import { TransformStylePropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface TransformStyleProps { /** * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element. * * @see https://developer.mozilla.org/docs/Web/CSS/transform-style */ style$TransformStyle: T; } export declare const transformStyle: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;