import { StyleOptions } from '../../types'; export interface AnimationDurationProps { /** * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle. * * @see https://developer.mozilla.org/docs/Web/CSS/animation-duration */ style$AnimationDuration: T; } export declare const animationDuration: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;