UNPKG

@jbrowse/plugin-linear-genome-view

Version:

JBrowse 2 linear genome view

9 lines (8 loc) 439 B
import type { AutocompleteRenderInputParams, TextFieldProps as TFP } from '@mui/material'; export default function AutocompleteTextField({ TextFieldProps, inputBoxVal, params, setInputValue, setCurrentSearch, }: { TextFieldProps: TFP; inputBoxVal: string; params: AutocompleteRenderInputParams; setInputValue: (arg: string) => void; setCurrentSearch: (arg: string) => void; }): import("react/jsx-runtime").JSX.Element;