/// <reference types="react" />
import { JSXChildren } from '@smart-react-components/core/types';
interface Props {
    children: JSXChildren;
    dropdownStatus: boolean;
    searchValue: string;
}
interface Return {
    optionList: JSX.Element[];
}
declare const useSelectSearch: (props: Props) => Return;
export default useSelectSearch;
