import type { Node as ProsemirrorNode } from 'prosemirror-model';
import type { MarkdownOptions } from '../types';
export declare function toMyst(doc: ProsemirrorNode, opts?: MarkdownOptions): {
    content: string;
    mdastSnippets: Record<string, import("mystjs").GenericNode<Record<string, any>>>;
};
export declare function toMarkdown(doc: ProsemirrorNode, opts?: MarkdownOptions): string;
