/** * Parsing for the explicit `resume-child ` command. * * Resumes an INTERRUPTED durable child mission as the same mission + same * durable child AgentSession with a NEW execution attempt. Purely parsing; * the caller performs store/session resolution and drives the coordinator. */ export type ResumeChildCommandParse = { kind: "none"; } | { kind: "help"; } | { kind: "missing"; } | { kind: "resume"; missionId: string; }; export declare function parseResumeChildCommand(args: string[]): ResumeChildCommandParse; //# sourceMappingURL=resume-child-command.d.ts.map