export declare class ErrorChecker { verbose: boolean; status: "pending" | "running" | "error" | "success"; errors: string[]; totalFiles: number; processedFiles: number; constructor({ verbose }: { verbose: boolean; }); reset(): void; run(onProgress: () => void): Promise; getOutput(): string; }