import * as ort from "onnxruntime-node"; import { BaseDetectionService } from "../core/base-detection.service.js"; import type { DebuggingOptions, DetectionOptions, ProcessingEngine } from "../interface.js"; /** * Service for detecting text regions in images using Node.js implementation */ export declare class DetectionService extends BaseDetectionService { constructor(session: ort.InferenceSession, options?: Partial, debugging?: Partial, engine?: ProcessingEngine); }