import { EventEmitter, OnInit, OnChanges } from "@angular/core"; import { FormGroup } from "@angular/forms"; import * as i0 from "@angular/core"; export declare class ColorSwatchComponent implements OnInit, OnChanges { colorName: string; cssName: string; mainColorHex: string; inputColors: Array; custom: boolean; automaticTints: boolean; onBlur: EventEmitter; swatchForm: FormGroup; mainHSL: { h: any; s: any; l: any; }; colorsHSL: {}; colorsHEX: {}; constructor(); ngOnInit(): void; ngOnChanges(): void; inits(): void; outputColors(): void; hexBlur(val: any, output?: boolean): void; hexBlurCustom(val: any, key: any): void; colorsToHex(): void; inputColorsFromMain(): any[]; addToMain(h: any, s: any, l: any): { h: number; s: number; l: number; }; hexToHSL(H: any): void; HSLToHex(h: any, s: any, l: any): string; translateTint(val: any): any; toggleCustom(e: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }