import type { OptionData } from './types'; interface UseWindowedOptionsParams { options: OptionData[]; inputValue: string; selectedValues: OptionData[]; } interface UseWindowedOptionsReturn { windowedOptions: OptionData[]; /** Pass directly to react-select's filterOption prop */ filterOption: (() => true) | undefined; hiddenCount: number; } /** * Windows large option lists to prevent react-select from processing thousands * of options. Selected values are always included at the top. */ export default function useWindowedOptions({ options, inputValue, selectedValues }: UseWindowedOptionsParams): UseWindowedOptionsReturn; export {}; //# sourceMappingURL=useWindowedOptions.d.ts.map