import type { TOptionType, IStateActions, IOnOptionsSearchRequestConfig } from "../config/types/index.d.mts"; type TGetOptionsParams = { value: string; callback: (options: TOptionType[]) => void; onOptionsSearchRequest: IOnOptionsSearchRequestConfig; stateActions: IStateActions; name: string; }; /** * Fetches options asynchronously based on the user's search input. * Uses the configuration provided in `onOptionsSearchRequest`. * @returns {Promise} */ export declare const getOptions: ({ value, callback, onOptionsSearchRequest, stateActions, name, }: TGetOptionsParams) => Promise; export {};