import type { Node } from '../../components/richText/renderer.js'; /** * Mock RichText content for testing */ export declare const mockRichTextContent: { type: "richText"; children: Node[]; }; /** * Simple text content for basic tests */ export declare const simpleTextContent: { type: "richText"; children: Node[]; }; /** * Content with HTML entities for decoding tests */ export declare const htmlEntitiesContent: { type: "richText"; children: Node[]; }; /** * Content with unknown element type for fallback testing */ export declare const unknownElementContent: { type: "richText"; children: Node[]; }; /** * Content with various text marks for leaf testing */ export declare const markedTextContent: { type: "richText"; children: Node[]; };