import type { SpringConfig } from "./types"; /** * Spring presets inspired by iOS animation feel. * * - `subtle` — Barely noticeable bounce, professional. (shared @howells/motion token) * - `snappy` — Quick, responsive for interactions. (shared @howells/motion token) * - `stiff` — Very quick, controlled. Panels, drawers. **(default)** Intentional * fork: damping 40 (tighter than the shared `stiff`) for drawer control. */ export declare const springs: { snappy: SpringConfig; stiff: { damping: number; mass: number; stiffness: number; }; subtle: SpringConfig; }; export type SpringPreset = keyof typeof springs; //# sourceMappingURL=springs.d.ts.map