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