import type { SelectedPoint } from "./state";
export type Action = {
    type: "changeSelection";
    points: SelectedPoint[];
};
export type ReducerState = {
    selectedPoints: SelectedPoint[];
};
export declare const reducer: (state: ReducerState, action: Action) => ReducerState;
