export type PMMark = { type: "bold" | "italic" | "strike" | "code" | "link"; attrs?: Record; }; export type PMNode = { type: string; attrs?: Record; content?: PMNode[]; text?: string; marks?: PMMark[]; }; export declare function astToTiptapDoc(ast: any): PMNode; //# sourceMappingURL=mdwc-to-tiptap.d.ts.map