export declare function resolveAgentDir(): string; export interface SetupResult { path: string; action: "skipped" | "updated" | "failed"; reason?: string; } export declare function ensureSubagentAcpTools(settingsPath?: string): Promise; export declare function runSetupAndNotify(notify?: (msg: string) => void): Promise;