import * as React from "react";
export interface ILegendListProps {
    series: any;
    chartType: string;
    width?: number;
    onItemClick: (item: any) => void;
}
export declare const LegendSeparator: () => JSX.Element;
export default class LegendList extends React.PureComponent<ILegendListProps> {
    render(): any;
}
