import type { LinearGenomeViewModel } from '..';
import type BaseResult from '@jbrowse/core/TextSearch/BaseResults';
type LGV = LinearGenomeViewModel;
declare const ImportFormRefNameAutocomplete: ({ model, selectedAsm, value, setValue, setOption, }: {
    value: string;
    setValue: (arg: string) => void;
    model: LGV;
    selectedAsm: string;
    setOption: (arg: BaseResult) => void;
}) => import("react/jsx-runtime").JSX.Element;
export default ImportFormRefNameAutocomplete;
