import * as React from 'react'; import { DefaultShapeProps, InstanceItemProps, SelectionEventProps, StyleOf, TextNodeProps } from '../../types'; import { LayoutStyleProperties } from '../../styleTransformers/transformLayoutStyleProperties'; import { TextStyleProperties } from '../../styleTransformers/transformTextStyleProperties'; import { BlendStyleProperties } from '../../styleTransformers/transformBlendProperties'; import { YogaStyleProperties } from '../../yoga/YogaStyleProperties'; import { OnLayoutHandlerProps } from '../../hooks/useOnLayoutHandler'; export interface TextProps extends TextNodeProps, DefaultShapeProps, InstanceItemProps, SelectionEventProps, OnLayoutHandlerProps { style?: StyleOf | void; children?: React.ReactText | React.ReactText[]; node?: any; preventResizing?: boolean; } declare const Text: React.FC; export { Text };