import { BackgroundColor, BorderBottomColor, Color, PrimaryButtonColors, SelectedMenuItemColors } from '../style-typings/styles'; import { ThemeTextColor } from './theme.typings'; export default class ThemeService { getActiveTabColor(themeTextColor?: ThemeTextColor, themeColor?: string): string; getBackgroundColor(themeColor?: string): BackgroundColor; getBorderBottomColor(themeTextColor?: ThemeTextColor, themeColor?: string): BorderBottomColor; getIconColorStyle(themeTextColor?: ThemeTextColor, themeColor?: string): Color; getLabelColorStyle(themeTextColor?: ThemeTextColor, themeColor?: string): Color; getPrimaryButtonColors(themeTextColor?: ThemeTextColor, themeColor?: string): PrimaryButtonColors; getSelectedMenuItemColors(themeTextColor?: ThemeTextColor, themeColor?: string): SelectedMenuItemColors; }