/** * Returns value if it's a valid CSS size value, or undefined otherwise. * * @param value - the value to validate. * @returns the validated string or undefined otherwise. */ export declare function validateCSSSize(value: string): string | undefined;