@jbrowse/core
Version:
JBrowse 2 core libraries used by plugins
14 lines (13 loc) • 563 B
TypeScript
import type { AbstractSessionModel } from '../util';
import type { InputProps as IIP, TextFieldProps as TFP } from '@mui/material';
declare const AssemblySelector: ({ session, onChange, label, selected, InputProps, TextFieldProps, localStorageKey, helperText, }: {
session: AbstractSessionModel;
label?: string;
helperText?: string;
onChange: (arg: string) => void;
selected?: string;
localStorageKey?: string;
InputProps?: IIP;
TextFieldProps?: TFP;
}) => import("react/jsx-runtime").JSX.Element;
export default AssemblySelector;