export interface ParsedAgentsArgs { command: "list" | "help"; selfAppId?: string; app?: string; capabilities: boolean; json: boolean; errors: string[]; } export interface AgentsCliIo { stdout?: (text: string) => void; stderr?: (text: string) => void; } export declare function parseAgentsArgs(args: string[]): ParsedAgentsArgs; export declare function runAgents(args: string[], io?: AgentsCliIo): Promise; export declare function formatAgentsUsage(): string; //# sourceMappingURL=agents.d.ts.map