import { ChartTypes } from '@zgfe/business-lib/es/chart/types'; import { SearchValue } from '../../types'; export declare namespace eventChartProps { interface ChartTypesProps extends ChartTypes.Value { xAxis: []; } interface Props { dataSource?: ChartTypesProps; params?: SearchValue; type?: string; showList?: string[]; showColors?: string[]; onChangeShow?: (data: string[]) => void; } }