import Text from './Text'; import Caption from './Caption'; import Label from './Label'; import Title from './Title'; import Body from './Body'; interface TypographyProps { /** * @deprecated Typography.Text will be removed in the next major release, please refer to https://design.employmenthero.com/mobile/Components/typography for the appropriate alternatives. */ Text: typeof Text; Caption: typeof Caption; Label: typeof Label; Title: typeof Title; Body: typeof Body; } declare const Typography: TypographyProps; export default Typography;