/** * Squad Remote Control — CLI Command * * `squad rc` or `squad remote-control` * Starts the RemoteBridge, creates a devtunnel, shows QR code. */ export interface RCOptions { tunnel: boolean; port: number; path?: string; } /** * Load the agent roster from team.md, following the externalized state * marker when present (#1398). The passed `squadDir` stays the local * working-tree dir — only the team.md read is redirected. */ export declare function loadRosterAgents(squadDir: string): Array<{ name: string; role: string; }>; export declare function runRC(cwd: string, options: RCOptions): Promise; //# sourceMappingURL=rc.d.ts.map