import { PhysicsOptions, TransitionConfig } from '../../types/index.ts'; export interface JaeminOptions { physics?: PhysicsOptions; initialRotation?: number; initialScale?: number; rotationTriggerPoint?: number; } /** * Jaemin transition — page A fades out while page B appears rotated and * scaled, then unwinds back to its natural size. * * Mapped to the new API as two WebAnimations in parallel. The "in" side uses * a single integrator and computes scale/rotation/border-radius from a * multi-stage easing inside the style function (originally three sequential * tick branches). */ export declare const jaemin: (options?: JaeminOptions) => TransitionConfig; //# sourceMappingURL=transition.d.ts.map