/// import { DisplayProperty } from './utils/csstype'; import { OptionalResponsiveProp } from './utils/types'; /** * Style prop for the display type of an element. * * @docsPath UI/Style System/Display */ export interface DisplayProps { /** Defines the display type of an element, which consists of the two basic qualities of how an element generates boxes — the outer display type defining how the box participates in flow layout, and the inner display type defining how the children of the box are laid out. */ display?: OptionalResponsiveProp; } export declare const display: import("@styled-system/core").styleFn; export declare const displayPropTypes: import("../../private_utils").ObjectMap>;