/** * ✔ selectable * ✘ space * ✔ decode */ import { Text, TextStyle, TextProps } from 'react-native'; import { ReactNode } from 'react'; import { HandlerRef } from './useNodesRef'; interface _TextProps extends TextProps { style?: TextStyle; children?: ReactNode; selectable?: boolean; 'user-select'?: boolean; 'enable-var'?: boolean; 'external-var-context'?: Record; 'parent-font-size'?: number; 'parent-width'?: number; 'parent-height'?: number; decode?: boolean; } declare const _Text: import("react").ForwardRefExoticComponent<_TextProps & import("react").RefAttributes>>; export default _Text;