import { PropsTypes } from '@orca-fe/deye-typings'; import { EChartsTitleProps } from '../components/EChartsTitle'; import { EChartsLegendProps } from '../components/EChartsLegend'; import { ChartsProps } from '../Charts'; import { EChartsXAxisProps, EChartsYAxisProps } from '../components/EChartsAxis'; export interface XyChartProps extends Omit { title?: EChartsTitleProps; name?: string; grid?: { left: string; top: string; right: string; bottom: string; }; axisX?: EChartsXAxisProps; axisY?: EChartsYAxisProps; legend?: EChartsLegendProps; } declare const XyChart: { (props: XyChartProps): JSX.Element; propsDef: PropsTypes[]; defaultProps: { title: { show: boolean; text: string; }; }; }; export default XyChart;