export declare const duration: { readonly instant: "0.1s"; readonly fast: "0.15s"; readonly normal: "0.2s"; readonly slow: "0.3s"; readonly slower: "0.5s"; }; export declare const easing: { readonly default: "ease-in-out"; readonly bounce: "cubic-bezier(0.34, 1.56, 0.64, 1)"; readonly smooth: "cubic-bezier(0.4, 0, 0.2, 1)"; }; export declare const transition: { readonly instant: "all 0.1s ease-in-out"; readonly fast: "all 0.15s ease-in-out"; readonly normal: "all 0.2s ease-in-out"; readonly slow: "all 0.3s ease-in-out"; readonly color: "color 0.2s ease-in-out, background-color 0.2s ease-in-out"; readonly transform: "transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)"; readonly opacity: "opacity 0.2s ease-in-out"; };