import { Component } from 'react'; export interface DiscreteLegendProps { className?: any; style?: any; orientation?: 'horizontal' | 'vertical'; entries: JSX.Element[]; } interface DiscreteLegendState { activeEntry?: string; } export declare class DiscreteLegend extends Component { static defaultProps: Partial; state: DiscreteLegendState; onEntryMouseEnter(activeEntry: string): void; onEntryMouseLeave(): void; render(): JSX.Element; } export {};