import { BaseComponentProps } from './BaseComponent';
import type { ICartesianAxisSpec, IPolarAxisSpec } from '@visactor/vchart';
export type AxisProps = (ICartesianAxisSpec | IPolarAxisSpec) & BaseComponentProps;
export declare const Axis: import("react").FC<AxisProps>;