8 lines
268 B
TypeScript
8 lines
268 B
TypeScript
import * as React from 'react';
|
|
interface MotionContextProps {
|
|
motion?: boolean;
|
|
}
|
|
export declare const Context: React.Context<MotionContextProps>;
|
|
declare const MotionProvider: React.FC<React.PropsWithChildren<MotionContextProps>>;
|
|
export default MotionProvider;
|