import { TransformBoxPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface TransformBoxProps { /** * The **`transform-box`** CSS property defines the layout box to which the `transform` and `transform-origin` properties relate. * * @see https://developer.mozilla.org/docs/Web/CSS/transform-box */ style$TransformBox: T; } export declare const transformBox: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;