export interface AdditionalTypography { buttons: { fontSizeSmall: string; lineHeightSmall: string; fontSizeMedium: string; lineHeightMedium: string; fontSizeLarge: string; lineHeightLarge: string; }; fontWeights: { thin: number; light: number; regular: number; semibold: number; }; fontSizes: { xxsmall: string; xsmall: string; small: string; medium: string; large: string; }; } declare const typography: AdditionalTypography & { fontFamily: string; fontSize: number; inputSize: string; }; export default typography; //# sourceMappingURL=typography.d.ts.map