import type { TooltipContentsComponent } from '../../Tooltip.tsx';
import type { Source } from '../../util.ts';
import type { Feature } from '@jbrowse/core/util';
type Coord = [number, number];
declare const WiggleTooltip: (props: {
    model: {
        featureUnderMouse: Feature;
        sources: Source[];
        rowHeight: number;
    };
    height: number;
    offsetMouseCoord: Coord;
    clientMouseCoord: Coord;
    TooltipContents?: TooltipContentsComponent;
}) => import("react/jsx-runtime").JSX.Element;
export default WiggleTooltip;
