/** * Coerces a string or numeric value into a valid CSS height length value * If the value is numeric it will assume that is expressed in pixels * @param value - the value to coerce. * * @internal * */ export declare function coerceSizeValue(value?: string | number): string | undefined;