/**
 * @chips-component
 * @module Chips-Component
 */
export interface IChipData {
    name: string;
    value: string;
    readonly?: boolean;
}
