import React from 'react'; export interface ReducedMotionContextValue { reduced: boolean; } export interface ReducedMotionProviderProps { children: React.ReactNode; forcedValue?: boolean; } export declare const ReducedMotionProvider: React.FC; export declare function useReducedMotion(): boolean;