export declare type PepChipsOrientationType = 'horizontal' | 'vertical'; export declare type PepChipsInputType = 'input' | 'select'; export interface IPepChip { key?: string; value: string; disabled?: boolean; selected?: boolean; removable?: boolean; selectable?: boolean; } export interface IPepChipSelection { value: string; isSelected: boolean; }