/** * Resume command for ralph-starter * Resumes a paused session from where it left off */ export interface ResumeCommandOptions { /** Force resume even if session is not paused */ force?: boolean; } /** * Run the resume command */ export declare function resumeCommand(options?: ResumeCommandOptions): Promise; //# sourceMappingURL=resume.d.ts.map