/** * List Command * * Implements the list command to display available coding agents. */ /** * List command options */ export interface ListOptions { /** * Output format: 'table' (default) or 'json' */ format?: 'table' | 'json'; } /** * List command implementation */ export declare function listCommand(options?: ListOptions): Promise; /** * Register list command with Commander program */ export declare function registerListCommand(program: any): void; //# sourceMappingURL=list.d.ts.map