export interface GatewayConfig { name: string; description?: string; port: number; strategy: string; providers: Array<{ name: string; apiKey?: string; priority: number; weight?: number; rateLimit?: number; }>; caching?: { enabled: boolean; ttl: number; }; logging?: { enabled: boolean; level: string; }; } export declare function createGatewayConfigCommand(): Promise; export declare function listGatewaysCommand(): void; export declare function getGatewayCommand(name: string): void; export declare function deleteGatewayCommand(name: string): Promise; export declare function showStrategiesCommand(): void; //# sourceMappingURL=gateway.d.ts.map