UNPKG

@smart-react-components/ui

Version:
13 lines (12 loc) 340 B
/// <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;