/** * Duration exception - When a motion longer than 0.7 seconds is needed use a multiplier of 700. */ export declare const DURATION: { DEFAULT: number; EXTRA_LONG: number; PROACTIVE_FAST: number; PROACTIVE_SLOW: number; SYSTEM: number; }; /** * The rule of thumb is using Quart Out when animating only the object's opacity, * otherwise use Expo Out ease. */ export declare const EASE: { EXPONENTIAL: string; QUART: string; }; export declare const ANIMATION: { bottomUpMovement: { name: string; styles: string; anim: 1; toString: () => string; } & string; fadeIn: { name: string; styles: string; anim: 1; toString: () => string; } & string; rotate: { name: string; styles: string; anim: 1; toString: () => string; } & string; topDownMovement: { name: string; styles: string; anim: 1; toString: () => string; } & string; topDownMovementLight: { name: string; styles: string; anim: 1; toString: () => string; } & string; }; export declare const defaultTransition = "all 0.24s"; //# sourceMappingURL=motions.d.ts.map