import { MotionProps } from 'framer-motion'; interface GetFadeInEffect { delay?: number; duration?: number; direction?: 'top' | 'bottom' | 'right' | 'left' | 'no'; amount: number; } export declare const getFadeInEffect: (props?: GetFadeInEffect) => MotionProps; export {};