import { Parameter } from "./../index";
export interface MetadataPdfaInterface {
    conformance?: string;
    part?: string;
}
export declare class MetadataPdfa implements MetadataPdfaInterface, Parameter {
    conformance?: string;
    part?: string;
    constructor(data: any);
    static getConformanceDefault(): string;
    static getConformanceDescription(): string;
    static getPartDefault(): string;
    static getPartDescription(): string;
    static fromJson(data: any): MetadataPdfa;
    toJson(): any;
    clone(): MetadataPdfa;
}
