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