import React, { CSSProperties } from 'react'; import { IGrammarSeries } from './model'; export interface IProps { /** * @description 数据集 * @default */ series: IGrammarSeries; /** * @description 高亮关系 * @default */ activeTypes?: string[]; /** * @description 自定义样式 * @default */ style?: CSSProperties; /** * @description 自定义类名 * @default */ className?: string; /** * @description 自定义内层样式 * @default */ innerStyle?: CSSProperties; } export declare const Grammar: { (props: IProps): JSX.Element; Legend: React.MemoExoticComponent<(props: import("./legend").ILegendProps) => JSX.Element>; };