import { FlattenSimpleInterpolation } from 'styled-components'; import { TextComponent } from './types'; type Typography = { subtitle1: FlattenSimpleInterpolation; subtitle2: FlattenSimpleInterpolation; body1: FlattenSimpleInterpolation; body2: FlattenSimpleInterpolation; prefix: FlattenSimpleInterpolation; caption: FlattenSimpleInterpolation; link: FlattenSimpleInterpolation; }; 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) => FlattenSimpleInterpolation; export { switchTypography, typography, FONT_WEIGHT };