import type { SharedValue } from 'react-native-reanimated'; /** * Returns a Reanimated `SharedValue` that is `true` when the OS * "Reduce Motion" accessibility setting is active. * * The hook subscribes to the OS event so the value stays in sync when the user * toggles the setting without restarting the app. * * **Example — skip spring animation when reduce-motion is on:** * ```tsx * const reduceMotion = useReducedMotionValue(); * const animatedStyle = useAnimatedStyle(() => ({ * transform: [{ scale: reduceMotion.value ? 1 : scale.value }], * })); * ``` */ export declare function useReducedMotionValue(): SharedValue; //# sourceMappingURL=useReduceMotion.d.ts.map