export interface DoctorOptions { input?: string; output?: string; dryRun?: boolean; quiet?: boolean; } export declare function runConfigDoctor(opts?: DoctorOptions): Promise<{ changed: boolean; input: string; output?: undefined; backup?: undefined; dryRun?: undefined; } | { changed: boolean; input: string; output: undefined; backup: undefined; dryRun: boolean; } | { changed: boolean; input: string; output: string; backup: string | undefined; dryRun: boolean; }>; //# sourceMappingURL=configDoctor.d.ts.map