import type { FC } from 'react'; import './index.less'; interface SelectPickerProps { loading: boolean; visible: boolean; onClose?: () => void; onConfirm?: (value: string[]) => void; value?: string[]; defaultValue?: string | string[]; multiple?: boolean; data: { label: string; value: string; }[]; } declare const SelectPicker: FC; export default SelectPicker;