/**
 *
 * @export
 * @interface RenderedDocument
 */
export interface RenderedDocument {
    /**
     * The document's template type
     * @type {number}
     * @memberof RenderedDocument
     */
    readonly documentTemplateType?: number;
    /**
     * The binary data of the document
     * @type {string}
     * @memberof RenderedDocument
     */
    readonly data?: string;
    /**
     * The document's content type
     * @type {string}
     * @memberof RenderedDocument
     */
    readonly mimeType?: string;
    /**
     * The title of the rendered document
     * @type {string}
     * @memberof RenderedDocument
     */
    readonly title?: string;
}
/**
 * Check if a given object implements the RenderedDocument interface.
 */
export declare function instanceOfRenderedDocument(value: object): value is RenderedDocument;
export declare function RenderedDocumentFromJSON(json: any): RenderedDocument;
export declare function RenderedDocumentFromJSONTyped(json: any, ignoreDiscriminator: boolean): RenderedDocument;
export declare function RenderedDocumentToJSON(json: any): RenderedDocument;
export declare function RenderedDocumentToJSONTyped(value?: Omit<RenderedDocument, 'documentTemplateType' | 'data' | 'mimeType' | 'title'> | null, ignoreDiscriminator?: boolean): any;
