import type React from 'react'; export interface RichTextNode { readonly dataset?: DOMStringMap; type?: string; name: string; attrs?: any; children?: RichTextNode; } export interface RichTextProps { nodes?: RichTextNode[]; } export declare const RichText: React.ComponentType;