import { RefObject } from 'react'; interface UseDropResize { selectInputRef: RefObject; dropStyle: { minWidth: string; }; } declare const useDropResize: () => UseDropResize; export default useDropResize;