export declare const duration: { readonly instant: "0ms"; readonly fast: "100ms"; readonly normal: "150ms"; readonly moderate: "200ms"; readonly slow: "300ms"; readonly slower: "500ms"; }; export declare const easing: { readonly standard: "cubic-bezier(0.2, 0, 0, 1)"; readonly out: "cubic-bezier(0, 0, 0.2, 1)"; readonly in: "cubic-bezier(0.4, 0, 1, 1)"; readonly emphasized: "cubic-bezier(0.2, 0, 0, 1.2)"; readonly linear: "linear"; }; export type Duration = typeof duration; export type Easing = typeof easing;