import React from 'react'; import type { StyledProps } from '../common'; import type { TdTextProps } from './type'; export interface TextProps extends TdTextProps, StyledProps { } declare const Text: React.ForwardRefExoticComponent>; export default Text;