import { GetLegendProps } from './types'; import * as d3 from 'd3'; export declare const legendClassNames: { legendContainer: string; legendTitle: string; legendTick: string; legendTickLine: string; legendTickText: string; }; export declare const legendDefaultParams: { tickSize: number; height: number; width: number; marginTop: number; marginBottom: number; ticksDivier: number; titleMarginBottom: number; }; export declare const getLegend: ({ color, title, tickSize, width, height, marginTop, marginRight, marginBottom, marginLeft, ticks, tickFormat, tickValues, titleMarginBottom, }: GetLegendProps) => d3.Selection;