/** * Internal dependencies */ import { AnimationType, ScaleDirection } from './types'; export declare const BEZIER: { readonly linear: "linear"; readonly in: "ease-in"; readonly out: "ease-out"; readonly inOut: "ease-in-out"; readonly inQuad: "cubic-bezier(0.55, 0.085, 0.68, 0.53)"; readonly outQuad: "cubic-bezier(0.25, 0.46, 0.45, 0.94)"; readonly inOutQuad: "cubic-bezier(0.455, 0.03, 0.515, 0.955)"; readonly inCubic: "cubic-bezier(0.55, 0.055, 0.675, 0.19)"; readonly outCubic: "cubic-bezier(0.215, 0.61, 0.355, 1)"; readonly inOutCubic: "cubic-bezier(0.645, 0.045, 0.355, 1)"; readonly inQuart: "cubic-bezier(0.895, 0.03, 0.685, 0.22)"; readonly outQuart: "cubic-bezier(0.165, 0.84, 0.44, 1)"; readonly inOutQuart: "cubic-bezier(0.77, 0, 0.175, 1)"; readonly inQuint: "cubic-bezier(0.755, 0.05, 0.855, 0.06)"; readonly outQuint: "cubic-bezier(0.23, 1, 0.32, 1)"; readonly inOutQuint: "cubic-bezier(0.86, 0, 0.07, 1)"; readonly inSine: "cubic-bezier(0.47, 0, 0.745, 0.715)"; readonly outSine: "cubic-bezier(0.39, 0.575, 0.565, 1)"; readonly inOutSine: "cubic-bezier(0.445, 0.05, 0.55, 0.95)"; readonly inExpo: "cubic-bezier(0.95, 0.05, 0.795, 0.035)"; readonly outExpo: "cubic-bezier(0.19, 1, 0.22, 1)"; readonly inOutExpo: "cubic-bezier(1, 0, 0, 1)"; readonly inCirc: "cubic-bezier(0.6, 0.04, 0.98, 0.335)"; readonly outCirc: "cubic-bezier(0.075, 0.82, 0.165, 1)"; readonly inOutCirc: "cubic-bezier(0.785, 0.135, 0.15, 0.86)"; readonly default: "cubic-bezier(0.4, 0.4, 0.0, 1)"; }; export type BezierType = keyof typeof BEZIER; export declare const ANIMATION_EFFECTS: { DROP: { value: AnimationType; name: string; }; FADE_IN: { value: AnimationType; name: string; }; FLY_IN: { value: AnimationType; name: string; }; PAN: { value: AnimationType; name: string; }; PULSE: { value: AnimationType; name: string; }; TWIRL_IN: { value: AnimationType; name: string; }; WHOOSH_IN: { value: AnimationType; name: string; }; ZOOM: { value: AnimationType; name: string; }; ROTATE_IN: { value: AnimationType; name: string; }; }; export declare const BACKGROUND_ANIMATION_EFFECTS: { ZOOM: { value: AnimationType; name: string; }; PAN: { value: AnimationType; name: string; }; PAN_AND_ZOOM: { value: AnimationType; name: string; }; }; export declare const ANIMATION_PARTS: { BLINK_ON: { value: AnimationType; name: string; }; BOUNCE: { value: AnimationType; name: string; }; FADE: { value: AnimationType; name: string; }; FLIP: { value: AnimationType; name: string; }; FLOAT_ON: { value: AnimationType; name: string; }; MOVE: { value: AnimationType; name: string; }; PULSE: { value: AnimationType; name: string; }; SPIN: { value: AnimationType; name: string; }; ZOOM: { value: AnimationType; name: string; }; }; export declare const SCALE_DIRECTIONS: { readonly IN: readonly [ScaleDirection.ScaleInTopLeft, ScaleDirection.ScaleInBottomRight]; readonly OUT: readonly [ScaleDirection.ScaleOutTopRight, ScaleDirection.ScaleOutBottomLeft]; }; export declare const BG_MIN_SCALE = 100; export declare const BG_MAX_SCALE = 400; //# sourceMappingURL=constants.d.ts.map