import { StyleOptions } from '../../types'; export interface AnimationDirectionProps { /** * The **`animation-direction`** CSS property sets whether an animation should play forwards, backwards, or alternating back and forth. * * @see https://developer.mozilla.org/docs/Web/CSS/animation-direction */ style$AnimationDirection: T; } export declare const animationDirection: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;