interface HorizontalCrosshairProps { /** Coordinate y for crosshair */ y: number; /** Left label for crosshair */ leftLabel?: string; /** Right label for the crosshair */ rightLabel?: string; /** Width for crosshair line */ width: number; /** Height for crosshair line */ height?: number; /** Top margin for crosshair line */ top?: number; /** Left offset */ leftOffset?: number; /** Right offset */ rightOffset?: number; /** Indicates wether the line needs to be dashed */ dashed?: boolean; /** Chart bounds to calculate magnifier position */ chartBounds?: DOMRect; } export declare const HorizontalCrosshair: { (props: HorizontalCrosshairProps): import("react").JSX.Element; displayName: string; }; export {}; //# sourceMappingURL=HorizontalCrosshair.d.ts.map