/// import { TextProps as NativeTextProps, TextStyle } from 'react-native'; export interface TextStyles { root: TextStyle; } export interface TextProps extends NativeTextProps { href?: string; target?: string; styles?: Partial; } export declare const Text: import("react").ComponentType;