/** * Created by nghinv on Fri Jun 18 2021 * Copyright (c) 2021 nghinv@lumi.biz */ import React from 'react'; import { TextProps, TextStyle } from 'react-native'; import { TextType } from '@nghinv/react-native-theme'; export interface TextPropsType extends TextProps { children?: string | React.ReactNode; style?: TextStyle; type?: TextType; } declare function Text(props: TextPropsType): JSX.Element; declare namespace Text { var defaultProps: {}; } declare const _default: React.MemoExoticComponent; export default _default;