import { D3Selection } from '../../common/interfaces';
import { LegendBounds } from '../../utils/legend-helper';
import { LegendInfo } from './interfaces';
import DotPlot from '../dot-plot';
/**
 * Renders Dot Plot legend to a SVG group element according to bounds.
 */
export default function renderDotPlotLegend(g: D3Selection, bounds: LegendBounds, legendInfo: LegendInfo, plot: DotPlot): void;
