/// /** * ✔ nodes */ import { View, ViewProps, ViewStyle } from 'react-native'; import { HandlerRef } from '../useNodesRef'; type Node = { type: 'node' | 'text'; name?: string; attrs?: any; children?: Array; text: string; }; interface _RichTextProps extends ViewProps { style?: ViewStyle; nodes: string | Array; 'enable-var'?: boolean; 'external-var-context'?: Record; 'parent-font-size'?: number; 'parent-width'?: number; 'parent-height'?: number; } declare const _RichText: import("react").ForwardRefExoticComponent<_RichTextProps & import("react").RefAttributes>>; export default _RichText;