/** Context value exposed by {@link useAnimation}. */ interface AnimationContextType { /** Whether animations are enabled (composed with OS preference). */ animated: boolean; } /** @internal Carries the resolved `animated` flag from SaasflareProvider. */ export declare const AnimationContext: import("react").Context; /** * Access the resolved animation state. * * Inside a `SaasflareProvider`, returns the provider's composed value * (`animated` prop AND NOT `prefers-reduced-motion`). Outside any provider, * falls back to the OS preference alone. * * @example * const { animated } = useAnimation() * */ export declare function useAnimation(): AnimationContextType; export {};