import { TextComponent } from './types'; type Typography = { subtitle1: string; subtitle2: string; body1: string; body2: string; prefix: string; caption: string; link: string; }; declare const FONT_WEIGHT: { regular: number; medium: number; semiBold: number; }; declare const typography: Typography; /** switch typography on provided category */ declare const switchTypography: (props: TextComponent.ParagraphTypes) => string; export { switchTypography, typography, FONT_WEIGHT };