import React, { FC } from 'react'; interface ITypography { children: React.ReactNode; color?: string; maxWidth?: number; fontWeight?: string; } export declare const Title: FC; export declare const SubTitle: FC; export declare const SubTitle2: FC; export declare const Body: FC; export declare const Medium: FC; export declare const MediumTruncated: FC; export declare const Small: FC; export {};