import { RGB, RGBAStyles } from '../style-typings/styles'; import ThemeService from '../theme/theme.service'; import { ThemeTextColor } from '../theme/theme.typings'; export default class ColorUtilsService { private themeService; constructor(themeService: ThemeService); hexToRgb(hex: string): RGB | undefined; initRGBAStyles(themeTextColor?: ThemeTextColor, themeColor?: string, opacity?: number): RGBAStyles; }