/** * Gateway command arguments */ export interface GatewayCommandArgs { subcommand: string; args: string[]; options: Record; } export interface GatewayCommandOptions { workspace?: string; configDir?: string; } /** * Execute gateway command */ export declare function executeGatewayCommand(args: GatewayCommandArgs, commandOptions?: GatewayCommandOptions): Promise;