import { Billing, Parameter, Pdfa, PdfPassword, Settings } from "./../index";
export interface PdfaOperationInterface {
    billing?: Billing;
    password?: PdfPassword;
    pdfa: Pdfa;
    settings?: Settings;
}
export declare class PdfaOperation implements PdfaOperationInterface, Parameter {
    billing?: Billing;
    password?: PdfPassword;
    pdfa: Pdfa;
    settings?: Settings;
    constructor(data: any);
    static getBillingDescription(): string;
    static getPasswordDescription(): string;
    static getPdfaDescription(): string;
    static getSettingsDescription(): string;
    static fromJson(data: any): PdfaOperation;
    toJson(): any;
    clone(): PdfaOperation;
}
