import { UnitValue } from "../types"; export declare type DimensionProps = { w?: UnitValue; h?: UnitValue; sz?: UnitValue; minw?: UnitValue; minh?: UnitValue; maxw?: UnitValue; maxh?: UnitValue; }; export declare function dimensions(props: DimensionProps): any;