import { Parameter, PdfaEditProfile } from "./../index";
export interface PdfaSettingsInterface {
    pdfaEditProfile?: PdfaEditProfile;
}
export declare class PdfaSettings implements PdfaSettingsInterface, Parameter {
    pdfaEditProfile?: PdfaEditProfile;
    constructor(data: any);
    static getPdfaEditProfileDefault(): PdfaEditProfile;
    static getPdfaEditProfileDescription(): string;
    static fromJson(data: any): PdfaSettings;
    toJson(): any;
    clone(): PdfaSettings;
}
