import type { SessionRole } from "./session-client.js"; export interface InstallResult { wrote: string[]; skillPath: string; mcpSnippet: Record; } export declare function installAgentWiring(options: { inviteUrl: string; role: SessionRole; name?: string; projectDir?: string; global?: boolean; }): Promise;