import React from 'react'; export interface IChipDeptProps { /** Optional passed classname. */ className?: string; /** Name of user */ name: string; /** Emoji */ emoji?: string | 'members' | 'department'; /** Select ID sent back when remove button is clicked */ deptId?: string; /** onRemove click handler */ onRemove?: (id: string) => void; } export declare const ChipDept: React.FC;