export declare const EasingType: { readonly BEZIER: "BEZIER"; readonly SPRING: "SPRING"; readonly BOUNCE: "BOUNCE"; readonly WIGGLE: "WIGGLE"; readonly OVERSHOOT: "OVERSHOOT"; }; export type EasingTypeKey = keyof typeof EasingType; export declare const EasingTypeLowerCase: { readonly BEZIER: "bezier"; readonly SPRING: "spring"; readonly BOUNCE: "bounce"; readonly WIGGLE: "wiggle"; readonly OVERSHOOT: "overshoot"; }; export type EasingTypeLowerCaseKey = keyof typeof EasingTypeLowerCase; export declare const BezierStyle: { readonly IN: "IN"; readonly OUT: "OUT"; readonly IN_OUT: "IN_OUT"; readonly OUT_IN: "OUT_IN"; }; export type BezierStyleKey = keyof typeof BezierStyle; export declare const BezierCurve: { readonly SINE: "SINE"; readonly QUAD: "QUAD"; readonly CUBIC: "CUBIC"; readonly QUART: "QUART"; readonly QUINT: "QUINT"; readonly EXPO: "EXPO"; readonly CIRC: "CIRC"; readonly BACK: "BACK"; readonly JUMP: "JUMP"; readonly ANTICIPATE: "ANTICIPATE"; }; export type BezierCurveKey = keyof typeof BezierCurve; export declare const OvershootStyle: { readonly IN: "IN"; readonly OUT: "OUT"; readonly IN_OUT: "IN_OUT"; }; export type OvershootStyleKey = keyof typeof OvershootStyle; export declare const SpringCurve: { readonly HEAVY: "HEAVY"; readonly BOUNCY: "BOUNCY"; readonly DROP: "DROP"; readonly GLIDE: "GLIDE"; readonly SNAP: "SNAP"; readonly LAZY: "LAZY"; readonly ELASTIC: "ELASTIC"; }; export type SpringCurveKey = keyof typeof SpringCurve; export declare const BounceCurve: { readonly FIRM: "FIRM"; readonly SOFT: "SOFT"; readonly SHARP: "SHARP"; readonly SUBTLE: "SUBTLE"; readonly PLAYFUL: "PLAYFUL"; readonly SPRINGY: "SPRINGY"; }; export type BounceCurveKey = keyof typeof BounceCurve; export declare const WiggleCurve: { readonly SUBTLE: "SUBTLE"; readonly ENERGETIC: "ENERGETIC"; readonly PLAYFUL: "PLAYFUL"; readonly SHARP: "SHARP"; readonly SMOOTH: "SMOOTH"; readonly INTENSE: "INTENSE"; readonly DYNAMIC: "DYNAMIC"; }; export type WiggleCurveKey = keyof typeof WiggleCurve; export declare const OvershootCurve: { readonly SOFT: "SOFT"; readonly FIRM: "FIRM"; readonly SMOOTH: "SMOOTH"; readonly DYNAMIC: "DYNAMIC"; readonly DRAMATIC: "DRAMATIC"; }; export type OvershootCurveKey = keyof typeof OvershootCurve; export declare const AnimationType: { readonly MOVE_X: "MOVE_X"; readonly MOVE_Y: "MOVE_Y"; readonly WIDTH: "WIDTH"; readonly HEIGHT: "HEIGHT"; readonly SCALE: "SCALE"; readonly ROTATE: "ROTATE"; readonly OPACITY: "OPACITY"; readonly ROTATE_X: "ROTATE_X"; readonly ROTATE_Y: "ROTATE_Y"; readonly SHAPE: "SHAPE"; }; export type AnimationTypeKey = keyof typeof AnimationType; export declare const PreviewPlayMode: { readonly INFINITE: "INFINITE"; readonly ONCE: "ONCE"; }; export type PreviewPlayModeKey = keyof typeof PreviewPlayMode; export declare const LinearEasingAccuracy: { readonly LOW: "LOW"; readonly MEDIUM: "MEDIUM"; readonly HIGH: "HIGH"; readonly ULTRA: "ULTRA"; }; export type LinearEasingAccuracyKey = keyof typeof LinearEasingAccuracy;