/// import { ContextMenuItemProps } from '../ContextMenu/Item'; interface TabItemProps { label: string; value: string; changed: boolean; temporary: boolean; onClose: () => void; onClick: () => void; onSave: () => void; active: boolean; contextMenuItems: Array; } export default function TabItem(props: TabItemProps): JSX.Element; export {};