import { AnalyzePdfa, Parameter, ConvertPdfa } from "./../index";
export interface PdfaInterface {
    analyze?: AnalyzePdfa;
    convert?: ConvertPdfa;
}
export declare class Pdfa implements PdfaInterface, Parameter {
    analyze?: AnalyzePdfa;
    convert?: ConvertPdfa;
    constructor(data: any);
    static getAnalyzeDescription(): string;
    static getConvertDescription(): string;
    static fromJson(data: any): Pdfa;
    toJson(): any;
    clone(): Pdfa;
}
