import { D3Selection } from '../../common/interfaces';
import { LegendBounds } from '../../utils/legend-helper';
import { DifferentialPlotLegendInfo } from './interfaces';
import DifferentialPlot from '../differential-plot';
/**
 * Renders differential plot legend to a SVG group element according to bounds.
 */
export default function renderDifferentialPlotLegend(g: D3Selection, bounds: LegendBounds, legendInfo: DifferentialPlotLegendInfo, plot: DifferentialPlot): void;
