import React from 'react'; import type { TaroBaseProps } from '../_util/typings'; interface NodeType { type?: 'node' | 'text'; [key: string]: any; } declare type NodesType = string | NodeType[]; export interface RichTextProps extends TaroBaseProps { /** * 节点列表/ HTML String */ nodes?: NodesType; /** * 富文本是否可以长按选中,可用于复制,粘贴,长按搜索等场景 */ selectable?: boolean; } declare const _default: React.ForwardRefExoticComponent>; export default _default;