export interface DisplayProps { /** * Sets the outer display type of the component. The outer type sets a component's participation in [flow layout](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_flow_layout). * * - `auto` the component's initial value. The actual value depends on the component and context. * - `none` hides the component from display and removes it from the accessibility tree, making it invisible to screen readers. * * @see https://developer.mozilla.org/en-US/docs/Web/CSS/display * @default 'auto' */ display?: 'auto' | 'none'; }