import { FunctionComponent } from 'react'
import { TextProps as TextPropsT } from '@tarojs/components'

export type TextProps = TextPropsT

declare const Text: FunctionComponent<TextProps>

export { Text }
