/** * Label-specific validation and cleaning utilities */ export interface ValidationResult { isValid: boolean; cleaned: string; reason?: string; } /** * Validate and clean a generated string based on its label type */ export declare function validateForLabel(label: string, value: string): ValidationResult;