import type { IFLIPAnimationAPI } from './types'; /** * Hook for executing FLIP (First-Last-Invert-Play) animations. * Uses spring easing for natural motion with slight overshoot. * * @returns FLIP animation API with animate, cancel, and status methods * * @example * ```tsx * const flip = useFLIPAnimation(); * * // After calculating deltas: * await flip.animateAll(elements, deltas, { * duration: 300, * onComplete: (id) => console.log(`${id} completed`) * }); * ``` */ export declare function useFLIPAnimation(): IFLIPAnimationAPI; //# sourceMappingURL=useFLIPAnimation.d.ts.map