import type { DualAxesConfig } from '@ant-design/plots'; import React from 'react'; export type DualAxesProps = Partial & { categories: string[]; axisXTitle?: string; series: DualAxesSeriesItem[]; legendTypeList?: string[]; style?: { palette?: string[]; backgroundColor?: string; startAtZero?: boolean; }; }; export type DualAxesSeriesItem = { type: string; data: number[]; axisYTitle?: string; }; declare const DualAxes: (props: DualAxesProps) => React.JSX.Element; export default DualAxes;