import { Elements } from '../../el'; import { MarkdownEditorPlugin } from '../../plugin'; export type ParserResult = { schema: Elements[]; links: { path: number[]; target: string; }[]; }; export declare const parserMdToSchema: (code: string, plugins?: MarkdownEditorPlugin[]) => ParserResult;