declare const FontConstants: { familyRegular: string; sizeTitle: number; sizeRegular: number; weightBold: 'bold' | 'normal' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'; }; declare const ColorConstants: { background: string; backgroundMedium: string; backgroundLight: string; font: string; }; declare const SizeConstants: { paddingSmall: number; paddingRegular: number; paddingLarge: number; borderRadius: number; }; export { FontConstants, ColorConstants, SizeConstants };