import { StyleOptions } from '../../types'; export interface TransitionDurationProps { /** * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur. * * @see https://developer.mozilla.org/docs/Web/CSS/transition-duration */ style$TransitionDuration: T; } export declare const transitionDuration: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;