import { Ref } from 'react'; import { Crosshair, CrosshairConfigInterface } from '@unovis/ts'; export declare type VisCrosshairRef = { component?: Crosshair; }; export declare type VisCrosshairProps = CrosshairConfigInterface & { data?: Datum[]; ref?: Ref>; }; export declare const VisCrosshairSelectors: typeof import("@unovis/ts/dist/components/crosshair/style"); export declare const VisCrosshair: ((props: VisCrosshairProps) => JSX.Element | null);