import { OcrResponse } from "./ocrResponse.js";
import { OcrParameters } from "./params/index.js";
import { BaseProduct } from "../../../v2/product/baseProduct.js";
/**
 * Extract raw text (OCR) from any image or scanned document.
 */
export declare class Ocr extends BaseProduct {
    static get parametersClass(): typeof OcrParameters;
    static get responseClass(): typeof OcrResponse;
    static get slug(): string;
}
