import { FC } from 'react'; interface SelectWithModal { options: { value: string | number | boolean; label: string; }[]; onChange: (data: string | number | boolean | undefined) => void; placeholder?: string; title?: string; } declare const SelectWithModal: FC; export default SelectWithModal;