import { DisplayPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface DisplayProps { /** * The **`display`** CSS property sets whether an element is treated as a block or inline element and the layout used for its children, such as grid or flex. * * @see https://developer.mozilla.org/docs/Web/CSS/display */ style$Display: T; } export declare const display: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;