import type { AnyConfigurationModel } from '@jbrowse/core/configuration';
import type { AbstractSessionModel } from '@jbrowse/core/util';
declare const DeleteConnectionDialog: ({ deleteDialogDetails, session, handleClose, }: {
    deleteDialogDetails: {
        name: string;
        connectionConf: AnyConfigurationModel;
    };
    session: AbstractSessionModel;
    handleClose: () => void;
}) => import("react/jsx-runtime").JSX.Element;
export default DeleteConnectionDialog;
