import type { AnyConfigurationModel } from '@jbrowse/core/configuration';
import type { Feature, Region } from '@jbrowse/core/util';
declare const ArcRendering: ({ features, config, regions, bpPerPx, height, exportSVG, displayModel, onFeatureClick, }: {
    features: Map<string, Feature>;
    config: AnyConfigurationModel;
    regions: Region[];
    bpPerPx: number;
    height: number;
    displayModel?: {
        selectedFeatureId: string;
    };
    onFeatureClick: (event: React.MouseEvent, featureId: string) => void;
    exportSVG: boolean;
}) => import("react/jsx-runtime").JSX.Element;
export default ArcRendering;
