export interface LauncherDeps { sessionId: string; verifierCommand: string; } export interface LaunchResult { tmuxSession: string; } /** * Launch the verifier inside a detached tmux session. * No terminal window is auto-opened — the user runs `/verify launch` to get * the attach command and paste it into their preferred terminal (Warp, iTerm, etc.). */ export declare function launchVerifierTerminal(deps: LauncherDeps): Promise; export declare function killVerifierTerminal(sessionId: string): Promise; export declare function getTmuxAttachCommand(sessionId: string): string; //# sourceMappingURL=launcher.d.ts.map