import { Billing, Parameter, Converter, PdfPassword, Settings } from "./../index";
export interface ConverterOperationInterface {
    billing?: Billing;
    converter: Converter;
    password?: PdfPassword;
    settings?: Settings;
}
export declare class ConverterOperation implements ConverterOperationInterface, Parameter {
    billing?: Billing;
    converter: Converter;
    password?: PdfPassword;
    settings?: Settings;
    constructor(data: any);
    static getBillingDescription(): string;
    static getConverterDescription(): string;
    static getPasswordDescription(): string;
    static getSettingsDescription(): string;
    static fromJson(data: any): ConverterOperation;
    toJson(): any;
    clone(): ConverterOperation;
}
