import { ThemeRgbColor } from '../interfaces'; import { ThemeColorType } from '../types'; import * as i0 from "@angular/core"; /** Allows to apply accent colors **/ export declare class AccentColorService { private readonly documentElement; constructor({ documentElement }: Document); /** Gets color value from CSS variable */ get(colorType: ThemeColorType): ThemeRgbColor | null; /** Sets color value into CSS variable. All components immediately change their color */ apply(colorType: ThemeColorType, color: ThemeRgbColor): void; private getFromCssVariable; private getColorTypeCssVariableName; private parseCssColor; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }