import { OnChanges, OnInit, EventEmitter, SimpleChanges } from '@angular/core'; import { ChipGroupMetadata, ChipMetadata, ChipSelectionEvent, ChipRemoveEvent } from './types'; import * as i0 from "@angular/core"; export declare class ChipGroupComponent implements OnInit, OnChanges { private presets; preset?: string; props: Partial; resolvedProps: ChipGroupMetadata; selectionChange: EventEmitter; chipRemove: EventEmitter; chipClick: EventEmitter; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; private resolveProps; getChipColor(chip: ChipMetadata): string; getChipLabel(chip: ChipMetadata): string; onChipClick(chip: ChipMetadata): void; onRemoveChip(event: Event, chip: ChipMetadata): void; private emitSelectionChange; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }