import { StyleOptions } from '../../types'; export interface TransformProps { /** * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model. * * @see https://developer.mozilla.org/docs/Web/CSS/transform */ style$Transform: T; } export declare const transform: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;