minishouyin/node_modules/rc-motion/es/context.d.ts

10 lines
304 B
TypeScript
Raw Permalink Normal View History

2025-11-12 11:35:57 +08:00
import * as React from 'react';
interface MotionContextProps {
motion?: boolean;
}
export declare const Context: React.Context<MotionContextProps>;
export default function MotionProvider({ children, ...props }: MotionContextProps & {
children?: React.ReactNode;
}): React.JSX.Element;
export {};