export declare enum ChipInputClassKey { root = "root", inputRoot = "inputRoot", input = "input", chipContainer = "chipContainer", label = "label", helperText = "helperText", chip = "chip" } export interface ChipInputProps { onAdd: (chip: T) => any; onDelete: (chip: T) => any; value: T[]; disabled: boolean; } export interface ChipTileProps { title: string; onRemove: (participant: string) => any; }