import { ChangeDetectorRef, OnDestroy, PipeTransform } from '@angular/core'; import { ThemeService } from './theme.service'; import { ThemeSet } from './theme.types'; import * as i0 from "@angular/core"; export declare class RgbColorPipe implements PipeTransform { transform: (color: string) => string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵpipe: i0.ɵɵPipeDeclaration; } export declare class RgbaColorPipe implements PipeTransform { transform: ([color, opacity]: [string, number]) => string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵpipe: i0.ɵɵPipeDeclaration; } export declare class CssVarPipe implements PipeTransform { transform: (value: string) => string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵpipe: i0.ɵɵPipeDeclaration; } export declare class ThemePickerPipe implements PipeTransform, OnDestroy { private currentTheme; private readonly destroy$$; constructor(themeService: ThemeService, cdr: ChangeDetectorRef); transform(v: ThemeSet): T; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration, never>; static ɵpipe: i0.ɵɵPipeDeclaration, "auiThemePicker", true>; }