import { Document } from "./document";
import { AsposeResponse } from "./asposeResponse";
export declare class DocumentResponse extends AsposeResponse {
    'document': Document;
    'messages': Array<string>;
    static discriminator: any;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
