interface OCRResult { bbox: number[][]; text: string; confidence: number; } export declare class EasyOCR { private pythonPath; private scriptPath; private pythonProcess; constructor(); private startPythonProcess; private sendCommand; init(languages?: string[]): Promise; readText(imagePath: string): Promise; close(): Promise; } export default EasyOCR; //# sourceMappingURL=easyocr.d.ts.map