import React, { FC, Ref } from 'react'; import { Typography } from '../types'; declare type Props = { children: React.ReactNode; truncate?: boolean; ref: Ref; } & Typography; declare const RefText: FC; export default RefText;