import type { VisualizationTheme } from '../types'; export type SharedTooltipInteractionOptions = { crosshairs?: boolean; }; export type PointHighlightStateOptions = { activeLineWidth?: number; inactiveOpacity?: number; }; export declare const getSharedTooltipInteraction: ({ crosshairs, }?: SharedTooltipInteractionOptions) => Record; export declare const getCategoryBackgroundHighlightState: (theme: VisualizationTheme) => Record; export declare const getCategoryHighlightInteraction: () => Record; export declare const getPointHighlightState: ({ activeLineWidth, inactiveOpacity, }?: PointHighlightStateOptions) => Record; export declare const getSeriesHighlightByColorInteraction: () => Record; export declare const getLineHighlightState: (lineWidth: number) => Record;