import { StyleOptions } from '../../types'; export interface TransitionDelayProps { /** * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes. * * @see https://developer.mozilla.org/docs/Web/CSS/transition-delay */ style$TransitionDelay: T; } export declare const transitionDelay: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;