import { BaseComponentProps } from './BaseComponent'; import type { ICartesianCrosshairSpec, IPolarCrosshairSpec } from '@visactor/vchart'; export type CrosshairProps = (ICartesianCrosshairSpec | IPolarCrosshairSpec) & BaseComponentProps; export declare const Crosshair: import("react").FC;