import { CdkDragDrop } from '@angular/cdk/drag-drop'; import { EventEmitter } from '@angular/core'; export declare class RdsChipsComponent { hostClass: boolean; chips: Array; /** Whether the chips should be rendered more compact */ dense: boolean; disabled: boolean; removable: boolean; /** Whether to enable reordering of the chip list */ orderable: boolean; selectable: boolean; vertical: boolean; /** Whether the chip labels should wrap */ wrapLabels: boolean; removed: EventEmitter; /** Emits the list in the new order */ reordered: EventEmitter; selected: EventEmitter; handleDrop(event: CdkDragDrop): void; handleSelect(chip: RdsChip): void; handleRemove(chip: RdsChip): void; } export declare class RdsChip { label: string; id: string; constructor(label: string, id?: string); }