import { useSelect } from '@duxweb/dux-refine'
import { Select } from 'tdesign-react/esm'
const { options, onSearch } = useSelect({
resource: 'role',
optionLabel: 'name',
optionValue: 'id',
})
<Select filterable onSearch={onSearch} options={options} />