/** * Coerces a string or numeric value into a valid CSS size length value (width, height, etc.) * 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;