/** * Position interface */ interface Position { x: number; y: number; width: number; height: number; } /** * Custom hook for fluid animation with spring physics */ export declare function useFluidAnimation(): { animate: (element: HTMLElement, targetPosition: Position) => Animation; reset: () => void; }; export {}; //# sourceMappingURL=use-fluid-animation.d.ts.map