import { IgrLegendBase, IIgrLegendBaseProps } from "./igr-legend-base"; import { ScaleLegend } from "./ScaleLegend"; /** * Represents a legend that indicates the size and the color scale for a collection of series. */ export declare class IgrScaleLegend extends IgrLegendBase { protected createImplementation(): ScaleLegend; /** * @hidden */ get i(): ScaleLegend; constructor(props: IIgrScaleLegendProps); } export interface IIgrScaleLegendProps extends IIgrLegendBaseProps { }