import { Billing, Parameter, UrlConverter, PdfPassword, Settings } from "./../index";
export interface UrlConverterOperationInterface {
    billing?: Billing;
    password?: PdfPassword;
    settings?: Settings;
    urlconverter: UrlConverter;
}
export declare class UrlConverterOperation implements UrlConverterOperationInterface, Parameter {
    billing?: Billing;
    password?: PdfPassword;
    settings?: Settings;
    urlconverter: UrlConverter;
    constructor(data: any);
    static getBillingDescription(): string;
    static getPasswordDescription(): string;
    static getSettingsDescription(): string;
    static getUrlconverterDescription(): string;
    static fromJson(data: any): UrlConverterOperation;
    toJson(): any;
    clone(): UrlConverterOperation;
}
