import type { CommonChartProps } from '@visactor/react-vchart'; import type { ICartesianAxisSpec } from './types'; import React from 'react'; export interface DoubleOverlapAreaProps extends CommonChartProps { xField?: string | string[]; yField?: string | string[]; /** * 坐标轴 X 轴配置 */ xAxes?: Partial; /** * 坐标轴 Y 轴配置 */ yAxes?: Partial; } export declare function DoubleOverlapArea(props: DoubleOverlapAreaProps): React.JSX.Element;