import type { HighlightedSeriesId, SelectState } from '../../core/components/interactions-state-helpers/types.js'; import type { XYChartState } from '../types/state.js'; export declare function reduceExploreReset(prev: XYChartState): XYChartState; export declare function reduceExplorePin(highlightedSeriesId?: HighlightedSeriesId): (prev: XYChartState) => XYChartState; export declare function reduceExploreUnPin(prev: XYChartState): XYChartState; export declare function reduceExploreSelect(select: SelectState): (prev: XYChartState) => XYChartState; export declare function reduceExploreCancelSelect(prev: XYChartState): XYChartState; export declare function reduceExploreCancelHighlight(prev: XYChartState): XYChartState; export declare function reduceExploreCancelAll(prev: XYChartState): XYChartState;