export interface Chip {
    id: string;
    label?: string;
    disabled?: boolean;
    size?: 'small' | 'medium';
}
