import React from 'react'; /** * A React context used to control whether animations are enabled or disabled. * Prefer `useAnimationToggle` or `AnimationToggle` over consuming this context * directly, since they take the user's reduced motion preference into account. * This context should only be used if direct access to the animation setting * is required. The context type is `Boolean` and defaults to `true`. * * @public */ declare const AnimationToggleContext: React.Context; export { AnimationToggleContext };