import { Context } from '../context.js'; import type { Phase, PhaseState } from '../types.js'; export interface DoctorRow { id: string; title: string; state: PhaseState; } export declare function runDoctor(): Promise; export declare function collectDoctorRows(ctx: Context, phases?: readonly Phase[]): Promise; //# sourceMappingURL=doctor.d.ts.map