declare const bodyFont = "Source Sans Pro,sans-serif"; declare const headingFont = "Montserrat,sans-serif"; declare const colors: { red100: string; red200: string; red300: string; red400: string; red500: string; red600: string; red700: string; red800: string; red900: string; yellow100: string; yellow200: string; yellow300: string; yellow400: string; yellow500: string; yellow600: string; yellow700: string; yellow800: string; yellow900: string; green100: string; green200: string; green300: string; green400: string; green500: string; green600: string; green700: string; green800: string; green900: string; white: string; grey100: string; grey200: string; grey300: string; grey400: string; grey500: string; grey600: string; grey700: string; grey800: string; grey900: string; blue100: string; blue200: string; blue300: string; blue400: string; blue500: string; blue600: string; blue700: string; blue800: string; blue900: string; purple500: string; purple700: string; purple800: string; }; declare const fontSize: { smaller1: string; base: string; larger1: string; larger2: string; larger3: string; larger4: string; larger5: string; larger6: string; }; declare const fontWeight: { regular: string; bold: string; black: string; }; declare const roundness: { base: string; }; export type ColorsType = typeof colors; export { bodyFont, headingFont, fontSize, roundness, fontWeight, colors };