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