export interface ConfigValidationResult {
    isValid: boolean;
    errors: string[];
    warnings: string[];
} 