import { Command } from '@oclif/core'; export interface GenerateClientFlags { 'client-type': string | undefined; 'output-path': string | undefined; } export declare function getClientType(parsedFlags: GenerateClientFlags, supportedClientTypes: string[]): Promise; export declare function getOutputPath(parsedFlags: GenerateClientFlags, apiType: 'rest' | 'graphql', requestType?: 'app' | 'admin'): Promise; export declare function recoverApiConfigSafe(command: Command): Promise<{ adminUrl: string; appUrl: string; masterKey: string; }>;