import { CSSUnits } from '@itcase/types-core'; declare const heightProps: readonly ["fixed", "hug", "fill"]; /** Unitless values (e.g. `"56"`) are treated as px by `useStyles`. */ export type HeightProps = `${number}${CSSUnits}` | `${number}` | (typeof heightProps)[number]; export { heightProps };