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;
