export interface IFlowApiKeyResult { apiKey: string; email: string; authMethod: 'apikey'; } export declare function validateApiKey(apiKey: string): Promise;