/** * Built-in speed profiles covering common slot game needs. * * Bounce values are tuned for the typical 120–200px symbol range. For larger * or smaller symbols, register a custom profile or override `bounceDistance`. * `bounceDuration` is the total time for the two-leg bounce (down then back). */ export declare const SpeedPresets: { readonly NORMAL: { readonly name: "normal"; readonly spinDelay: 100; readonly spinSpeed: 30; readonly stopDelay: 140; readonly anticipationDelay: 450; readonly bounceDistance: 56; readonly bounceDuration: 600; readonly accelerationEase: "power2.in"; readonly decelerationEase: "power2.out"; readonly accelerationDuration: 300; readonly minimumSpinTime: 500; }; readonly TURBO: { readonly name: "turbo"; readonly spinDelay: 30; readonly spinSpeed: 50; readonly stopDelay: 0; readonly anticipationDelay: 250; readonly bounceDistance: 42; readonly bounceDuration: 200; readonly accelerationEase: "power2.in"; readonly decelerationEase: "power2.out"; readonly accelerationDuration: 200; readonly minimumSpinTime: 300; }; readonly SUPER_TURBO: { readonly name: "superTurbo"; readonly spinDelay: 0; readonly spinSpeed: 80; readonly stopDelay: 0; readonly anticipationDelay: 0; readonly bounceDistance: 14; readonly bounceDuration: 120; readonly accelerationEase: "power1.in"; readonly decelerationEase: "power1.out"; readonly accelerationDuration: 50; readonly minimumSpinTime: 100; }; }; //# sourceMappingURL=SpeedPresets.d.ts.map