import { Parameter, PdfaLevel } from "./../index";
export interface AnalyzePdfaInterface {
    level?: PdfaLevel;
}
export declare class AnalyzePdfa implements AnalyzePdfaInterface, Parameter {
    level?: PdfaLevel;
    constructor(data: any);
    static getLevelDefault(): PdfaLevel;
    static getLevelDescription(): string;
    static fromJson(data: any): AnalyzePdfa;
    toJson(): any;
    clone(): AnalyzePdfa;
}
