import * as fs from 'fs'; import { spawnSync } from 'child_process'; import { loadConfig } from '../config'; export interface ResumeDeps { existsSync: typeof fs.existsSync; readFileSync: typeof fs.readFileSync; unlinkSync: typeof fs.unlinkSync; chmodSync: typeof fs.chmodSync; spawnSync: typeof spawnSync; exit: (code?: number) => never; cwd: () => string; /** Override for config loading — used in tests to inject a mock loader. */ loadConfig?: typeof loadConfig; } export declare function resumeCommand(deps?: ResumeDeps, backendOverride?: string): void; //# sourceMappingURL=resume.d.ts.map