import React from 'react'; interface ICollab { [key: string]: { nickName: string; color?: string; smallImage?: string; removed?: boolean; } | undefined; } export interface IChipAvatarList { /** Mandatory selection of options, most likely passed from type options */ collaboratorsById: ICollab; /** Mandatory list of collaborator ids */ collaboratorIds: string[]; } /** * Input collaborator */ export declare const ChipAvatarList: React.FC; export {};