export interface ValidationResult { valid: boolean; error?: string; } export declare function validateFlatApiKey(apiKey: string): ValidationResult;