interface Colors { disabledColor: string; primaryColor: string; secondaryColor: string; textColor: string; secondaryTextColor: string; whiteColor: string; } interface Fonts { primaryFont: string; secondaryFont: string; } export interface ThemeInterface { colors: Colors; fonts: Fonts; } declare const theme: ThemeInterface; export default theme;