export type SubagentScope = 'global' | 'project'; export interface SubagentPaths { global: string; project: string; } export declare function getSubagentPaths(agent: string, projectRoot?: string): SubagentPaths | null; export declare function getSubagentDir(agent: string, scope: SubagentScope, projectRoot?: string): string | null; export declare function listSupportedAgents(): string[];