import type { IDiscreteLegendSpec } from '@visactor/vchart'; import { LegendEventProps } from '../eventsUtils'; import { BaseComponentProps } from './BaseComponent'; export type LegendProps = BaseComponentProps & IDiscreteLegendSpec & LegendEventProps; export declare const Legend: import("react").FC;