import type { LinearGenomeViewModel } from '..';
import type { Base1DViewModel } from '@jbrowse/core/util/Base1DViewModel';
type LGV = LinearGenomeViewModel;
declare const OverviewRubberband: ({ model, overview, ControlComponent, }: {
    model: LGV;
    overview: Base1DViewModel;
    ControlComponent?: React.ReactElement;
}) => import("react/jsx-runtime").JSX.Element;
export default OverviewRubberband;
