export declare const RESERVED_NATIVE_AGENT_NAMES: Set; type AgentScope = 'user' | 'project'; export interface NativeAgentInfo { scope: AgentScope; path: string; file: string; name: string; description: string; model?: string; } export declare function listNativeAgents(cwd?: string, scope?: AgentScope): Promise; export declare function agentsCommand(args: string[]): Promise; export {}; //# sourceMappingURL=agents.d.ts.map