import { AreaSelectionCallback } from '../state/index.js'; export declare const actionTypes: { ENABLE_AREA_SELECTION: string; DISABLE_AREA_SELECTION: string; }; export declare const enableAreaSelection: (areaSelectionCallback: AreaSelectionCallback) => { type: string; areaSelectionCallback: AreaSelectionCallback; }; export declare const disableAreaSelection: () => { type: string; };