export declare class DocumentPrivilege {
    'allowPrint': boolean;
    'allowDegradedPrinting': boolean;
    'allowModifyContents': boolean;
    'allowCopy': boolean;
    'allowModifyAnnotations': boolean;
    'allowFillIn': boolean;
    'allowScreenReaders': boolean;
    'allowAssembly': boolean;
    'printAllowLevel': number;
    'changeAllowLevel': number;
    'copyAllowLevel': number;
    static discriminator: any;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
