import { Property } from "csstype"; import { KeysOf, SizeScaleValue } from "../types"; /** * Types for size related CSS properties */ export declare type SizeProps = Partial<{ /** * The CSS `width` property */ width: Property.Width | number; /** * The CSS `width` property */ w: Property.Width | number; /** * The CSS `min-width` property */ minWidth: Property.MinWidth | number; /** * The CSS `min-width` property */ minW: Property.MinWidth | number; /** * The CSS `max-width` property */ maxWidth: Property.MaxWidth | number; /** * The CSS `max-width` property */ maxW: Property.MaxWidth | number; /** * The CSS `height` property */ height: Property.Height | number; /** * The CSS `height` property */ h: Property.Height | number; /** * The CSS `min-height` property */ minHeight: Property.MinHeight | number; /** * The CSS `min-height` property */ minH: Property.MinHeight | number; /** * The CSS `max-height` property */ maxHeight: Property.MaxHeight | number; /** * The CSS `max-height` property */ maxH: Property.MaxHeight | number; /** * The CSS `width` and `height` property */ boxSize: Property.Width | number; }>; /** * Style prop names for sizes properties */ export declare const sizePropNames: KeysOf; //# sourceMappingURL=size.d.ts.map