import { SlideDirection } from "../SlideTransition.types"; export declare const slideAnimationVariants: { initial: (direction: SlideDirection) => { x: string; opacity: number; }; enter: { x: number; opacity: number; }; exit: (direction: SlideDirection) => { x: string; opacity: number; }; }; export declare const slideAnimationTransition: { duration: number; ease: number[]; };