import type { GetPropDefTypes } from './prop-def'; /** @public */ declare const heightPropDefs: { height: { type: "string"; className: string; customProperties: "--height"[]; responsive: true; }; minHeight: { type: "string"; className: string; customProperties: "--min-height"[]; responsive: true; }; maxHeight: { type: "string"; className: string; customProperties: "--max-height"[]; responsive: true; }; }; /** @public */ type HeightProps = GetPropDefTypes; export { heightPropDefs }; export type { HeightProps };