import type { AnyConfigurationModel } from '@jbrowse/core/configuration';
import type { Feature } from '@jbrowse/core/util';
type Coord = [number, number];
declare const Tooltip: ({ model, clientMouseCoord, }: {
    model: {
        featureUnderMouse: Feature | undefined;
        configuration: AnyConfigurationModel;
    };
    clientMouseCoord: Coord;
}) => import("react/jsx-runtime").JSX.Element | null;
export default Tooltip;
