import type { GetPropDefTypes } from './prop-def'; /** @public */ declare const displayPropDefs: { display: { type: "enum"; className: string; values: readonly ["none", "inline", "inline-block", "block"]; responsive: true; }; }; /** @public */ type DisplayProps = GetPropDefTypes; export { displayPropDefs }; export type { DisplayProps };