/** * Motion / animation design tokens for @bquery/ui */ export declare const motion: { readonly durationInstant: "0ms"; readonly durationFast: "150ms"; readonly durationNormal: "200ms"; readonly durationSlow: "300ms"; readonly durationSlower: "500ms"; readonly easingLinear: "linear"; readonly easingStandard: "cubic-bezier(0.4, 0, 0.2, 1)"; readonly easingDecelerate: "cubic-bezier(0, 0, 0.2, 1)"; readonly easingAccelerate: "cubic-bezier(0.4, 0, 1, 1)"; readonly easingEmphasized: "cubic-bezier(0.2, 0, 0, 1)"; readonly easingSpring: "cubic-bezier(0.34, 1.56, 0.64, 1)"; }; export type MotionToken = keyof typeof motion; //# sourceMappingURL=motion.d.ts.map