import type { CommonChartProps } from '@visactor/react-vchart'; import type { ICartesianAxisSpec } from './types'; interface Params { xAxes?: Partial; yAxes?: Partial; xField?: string | string[]; yField?: string | string[]; } export declare function getDefaultProps(params: Params): CommonChartProps; export {};