///
interface Props {
items: Array<{
label: string;
value: string;
}>;
changeList: Array;
currentActive: string;
containerId: string;
onItemClose: (values: Array) => void;
onItemClick: (value: string) => void;
onItemSave: (value: string) => void;
}
export default function Tab(props: Props): JSX.Element;
export {};