import { CdkDragDrop } from '@angular/cdk/drag-drop'; import { EventEmitter } from '@angular/core'; import * as i0 from "@angular/core"; export declare class RdsChipsComponent { hostClass: boolean; /** Aria label to attach to the mat-chip-list */ ariaLabel: string | null | undefined; 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; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare class RdsChip { label: string; id: string; constructor(label: string, id?: string); }