import { StyleOptions } from '../../types'; export interface AnimationDelayProps { /** * The **`animation-delay`** CSS property sets when an animation starts. The animation can start later, immediately from its beginning, or immediately and partway through the animation. * * @see https://developer.mozilla.org/docs/Web/CSS/animation-delay */ style$AnimationDelay: T; } export declare const animationDelay: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;