import { StyleOptions } from '../../types'; export interface TransitionPropertyProps { /** * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied. * * @see https://developer.mozilla.org/docs/Web/CSS/transition-property */ style$TransitionProperty: T; } export declare const transitionProperty: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;