/// import { EasingFunction } from 'framer-motion'; export declare type Easing = [number, number, number, number] | 'linear' | 'easeIn' | 'easeOut' | 'easeInOut' | 'circIn' | 'circOut' | 'circInOut' | 'backIn' | 'backOut' | 'backInOut' | 'anticipate' | EasingFunction; declare type Slide = { layoutId?: string; duration: number; ease: Easing; }; export declare const SlideOne: ({ layoutId, duration, ease }: Slide) => JSX.Element; export declare const SlideTwo: ({ layoutId, duration, ease }: Slide) => JSX.Element; export declare const SlideThree: ({ layoutId, duration, ease }: Slide) => JSX.Element; export {};