/** * Pause command for ralph-starter * Pauses a running session for later resumption */ export interface PauseCommandOptions { reason?: string; } /** * Run the pause command */ export declare function pauseCommand(options: PauseCommandOptions): Promise; //# sourceMappingURL=pause.d.ts.map