/// export declare type ChipActionType = 'chip' | 'radio' | 'checkbox'; export declare type ChipIcon = (info: ChipInfo) => JSX.Element; export declare type ChipIconAction = (id: string, isSelected: boolean) => 'delete' | 'check' | (() => void); export interface ChipInfo { id: string; isSelected: boolean; }