declare class RenderedDocument {
    /**
    * The binary data of the document
    */
    'data'?: Array<string>;
    /**
    * The document's template type
    */
    'documentTemplateType'?: number;
    /**
    * The document's content type
    */
    'mimeType'?: string;
    /**
    * The title of the rendered document
    */
    'title'?: string;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { RenderedDocument };
