import { CSSProperties } from 'react'; import { SupportedLocales } from './Types'; type TypographyVariant = 'h1' | 'h2' | 'h3' | 'h4' | 'body1' | 'body2' | 'body3' | 'body4'; type TypographyWeight = 'regular' | 'medium' | 'semibold' | 'bold'; export declare const getTypographyFontFamilies: (locale: SupportedLocales) => string; export declare const getTypographyVariantStyle: (variant: TypographyVariant, weight: TypographyWeight, locale: SupportedLocales) => CSSProperties; export declare const getTypographyStyles: (locale: SupportedLocales) => { h1Regular: CSSProperties; h1Medium: CSSProperties; h1Semibold: CSSProperties; h1Bold: CSSProperties; h2Regular: CSSProperties; h2Medium: CSSProperties; h2Semibold: CSSProperties; h3Regular: CSSProperties; h3Medium: CSSProperties; h3Semibold: CSSProperties; h4Medium: CSSProperties; h4Semibold: CSSProperties; body1Regular: CSSProperties; body1Medium: CSSProperties; body2Regular: CSSProperties; body2Medium: CSSProperties; body3Regular: CSSProperties; body3Medium: CSSProperties; body4Regular: CSSProperties; }; export {};