/** The time, in milliseconds, to debounce the textarea input event */
export declare const EDITOR_DEBOUNCE_TIMEOUT: number;
export declare const DEFAULT_CODEBLOCK_LANGUAGE: string;
export declare enum InlineFormatWrapper {
bold = "**",
italic = "_",
underline = "++",
strikethrough = "~~",
subscript = "~",
superscript = "^",
mark = "==",
code = "`"
}
/** The height of the .markdown-ui-toolbar */
export declare const TOOLBAR_HEIGHT: string;
/** The markdown new line character */
export declare const NEW_LINE_CHARACTER = "\n";
/** The markdown template for a codeblock */
export declare const MARKDOWN_TEMPLATE_CODEBLOCK: string;
/** The markdown template for a table */
export declare const MARKDOWN_TEMPLATE_TABLE: string;
/** The markdown template for a task. Ensure trailing space remains */
export declare const MARKDOWN_TEMPLATE_TASK = "- [ ] ";
export declare const MARKDOWN_TEMPLATE_TASK_COMPLETED = "- [x] ";
/** The markdown template for an unordered list. Ensure trailing space remains */
export declare const MARKDOWN_TEMPLATE_UL = "- ";
/** The markdown template for an ordered list. Ensure trailing space remains */
export declare const MARKDOWN_TEMPLATE_OL = "1. ";
/** The markdown template for a blockquote. Ensure trailing space remains */
export declare const MARKDOWN_TEMPLATE_BLOCKQUOTE = "> ";
/** The markdown link template */
export declare const MARKDOWN_TEMPLATE_LINK = "[text](url)";
/** The markdown image template */
export declare const MARKDOWN_TEMPLATE_IMAGE = "";
/** The inline SVG copy icon */
export declare const COPY_ICON_SVG = "";
/** The inline SVG to display as a header link */
export declare const HEADER_LINK_ICON_SVG = "";