/** * A React hook that combines the animation setting (see `AnimationToggleProvider`) * and the user's reduced motion preference into one value. * * @returns {string} `'off'` if animations are disabled. If animations are enabled * and the user prefers reduced motion, `'reduced'` is returned, `'on'` otherwise. * @public */ declare const useAnimationToggle: () => "on" | "off" | "reduced"; export { useAnimationToggle };