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 tiptapDocToAst(doc: PMNode): any; //# sourceMappingURL=tiptap-to-mdwc.d.ts.map