import { Basic, EndpointService, MarkupPreviewOptions, MarkupPreviewOutput } from "../types"; /** * Class to manage and expose all endpoits and operations below '/rest/api/1.0/markup/' */ export declare class MarkupEndpoint extends EndpointService { constructor(auth: Basic); /** * Preview the generated html for given markdown contents * @param {string} content Markup content to preview * @param {MarkupPreviewOptions} [previewOptions] Options to preview the markup * @returns {Promise} Promise with the markup html preview */ preview(content: string, previewOptions?: MarkupPreviewOptions): Promise; }