import type { Feature } from '@jbrowse/core/util';
import type { Region } from '@jbrowse/core/util/types';
declare const WiggleRendering: (props: {
    regions: Region[];
    features: Map<string, Feature>;
    bpPerPx: number;
    width: number;
    height: number;
    blockKey: string;
    onMouseLeave?: (event: React.MouseEvent) => void;
    onMouseMove?: (event: React.MouseEvent, arg?: string) => void;
    onFeatureClick?: (event: React.MouseEvent, arg?: string) => void;
}) => import("react/jsx-runtime").JSX.Element;
export default WiggleRendering;
