import type { ConnectionType } from '@jbrowse/core/pluggableElementTypes';
declare const ConnectionTypeSelect: ({ connectionTypeChoices, connectionType, setConnectionType, }: {
    connectionTypeChoices: ConnectionType[];
    connectionType?: ConnectionType;
    setConnectionType: (c?: ConnectionType) => void;
}) => import("react/jsx-runtime").JSX.Element;
export default ConnectionTypeSelect;
