import React from "react"; export interface AnimationContextType { reducedMotion: boolean; setReducedMotion: (reduced: boolean) => void; defaultSpring: { stiffness: number; damping: number; mass: number; }; } export declare const AnimationContext: React.Context; export interface AnimationProviderProps { children: React.ReactNode; defaultReducedMotion?: boolean; defaultSpring?: { stiffness: number; damping: number; mass: number; }; } export declare const AnimationProvider: React.FC; export declare const useAnimation: () => AnimationContextType; export declare const useAnimationContext: () => AnimationContextType; //# sourceMappingURL=AnimationContext.d.ts.map