import type { GetPropDefTypes } from './prop-def'; /** @public */ declare const widthPropDefs: { width: { type: "string"; className: string; customProperties: "--width"[]; responsive: true; }; minWidth: { type: "string"; className: string; customProperties: "--min-width"[]; responsive: true; }; maxWidth: { type: "string"; className: string; customProperties: "--max-width"[]; responsive: true; }; }; /** @public */ type WidthProps = GetPropDefTypes; export { widthPropDefs }; export type { WidthProps };