import { OnChangeParams, SelectProps } from '../../select'; import { GroupedAsyncSelectProps, Id } from '../types'; export declare type UseAsyncSelectParams = Omit & { onChange?: (params: OnChangeParams & { valueKeys: Id[]; }) => unknown; }; export declare const useAsyncSelect: (params: UseAsyncSelectParams) => SelectProps & { resultCountMap: Record; };