import type { EasingState, EasingStateBlock } from "../types/types"; declare const defaultBezierState: EasingStateBlock<"bezier">; export declare const bezierStateKeys: (keyof typeof defaultBezierState)[]; declare const defaultSpringState: EasingStateBlock<"spring">; export declare const springStateKeys: (keyof typeof defaultSpringState)[]; declare const defaultBounceState: EasingStateBlock<"bounce">; export declare const bounceStateKeys: (keyof typeof defaultBounceState)[]; declare const defaultWiggleState: EasingStateBlock<"wiggle">; export declare const wiggleStateKeys: (keyof typeof defaultWiggleState)[]; declare const defaultOvershootState: EasingStateBlock<"overshoot">; export declare const overshootStateKeys: (keyof typeof defaultOvershootState)[]; declare const defaultRestState: { easingType: "BEZIER"; previewDuration: number; previewAnimationType: "MOVE_X"; editorAccuracy: "HIGH"; }; export declare const restStateKeys: (keyof typeof defaultRestState)[]; export declare const defaultOtherState: { editorExtraSpaceTop: boolean; editorExtraSpaceBottom: boolean; previewPlayMode: "INFINITE"; previewShowLinear: boolean; foundEasterEgg: boolean; }; export declare const defaultEasingState: EasingState; export {};