import { Billing, Parameter, PdfPassword, Settings, Ocr } from "./../index";
export interface OcrOperationInterface {
    billing?: Billing;
    ocr: Ocr;
    password?: PdfPassword;
    settings?: Settings;
}
export declare class OcrOperation implements OcrOperationInterface, Parameter {
    billing?: Billing;
    ocr: Ocr;
    password?: PdfPassword;
    settings?: Settings;
    constructor(data: any);
    static getBillingDescription(): string;
    static getOcrDescription(): string;
    static getPasswordDescription(): string;
    static getSettingsDescription(): string;
    static fromJson(data: any): OcrOperation;
    toJson(): any;
    clone(): OcrOperation;
}
