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.4,0,0,1)' | 'cubic-bezier(0.6,0,0,1)' | 'cubic-bezier(0.8,0,0,1)' | 'cubic-bezier(0,0,1,1)';
export declare const easeInOut: AnimationCurve;
export declare const easeOut: AnimationCurve;
export declare const easeIn: AnimationCurve;
export declare const easeIn40Out: AnimationCurve;
export declare const easeIn60Out: AnimationCurve;
export declare const easeIn80Out: AnimationCurve;
export declare const linear: AnimationCurve;
