import { OnInit, EventEmitter } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; export interface ColorItem { name: string; color: string; n_color: string; } export declare class StyxColorSelectComponent implements OnInit, ControlValueAccessor { colorNames: { name: string; color: string; n_color: string; }[]; color: string; colorSelect: EventEmitter; constructor(); ngOnInit(): void; onSelect(item: ColorItem): void; private onModelChange; private onModelTouched; writeValue(value: any): void; registerOnChange(fn: Function): void; registerOnTouched(fn: Function): void; }