export type AnimationCurve = 'cubic-bezier(0.15,1,0.3,1)' | 'cubic-bezier(0.2,0,0,1)' | 'cubic-bezier(0.8,0,0,0.8)' | 'cubic-bezier(0,0,1,1)';
export declare const easeInOut: AnimationCurve;
export declare const easeOut: AnimationCurve;
export declare const easeIn: AnimationCurve;
export declare const linear: AnimationCurve;
