import React from "react"; import { IItemData } from "./common.typing"; export interface IPickerSelectProps { curListLabel: { pic: string; key: string | number; value: string | number; label: string; type?: 'org' | 'team' | 'user'; }[]; currentList: IItemData[]; setCurrentList: (list: IItemData[]) => void; } declare const PickerSelect: React.FC; export default PickerSelect;