import type { Element, Text } from 'slate'; import type { MarkedToken } from 'marked'; import type { InteractionRenderers, RichTextViewerProps } from '../RichTextViewer.types'; export declare const getNode: (token: MarkedToken, interactionRenderers?: InteractionRenderers[], markdownMap?: RichTextViewerProps["markdownMap"], htmlEnabled?: boolean) => Element | Text; export declare const convertMarkdownForEditor: (md?: string, searchRenderers?: InteractionRenderers[]) => (Element | Text)[]; declare const convertMarkdown: (md: string, interactionRenderers?: InteractionRenderers[], markdownMap?: RichTextViewerProps["markdownMap"], htmlEnabled?: boolean) => (Element | Text)[]; export default convertMarkdown; //# sourceMappingURL=markdownConverter.d.ts.map