import { GeoJSON } from 'geojson'; export declare const TOGGLE_CUSTOM_LAYER = "TOGGLE_CUSTOM_LAYER"; export declare const ADD_CUSTOM_LAYER = "ADD_CUSTOM_LAYER"; export declare const REMOVE_CUSTOM_LAYER = "REMOVE_CUSTOM_LAYER"; export declare const SET_CUSTOM_COLOR = "SET_CUSTOM_COLOR"; export declare const addCustomLayer: (geoJSON: GeoJSON, filename: string) => { type: string; geoJSON: GeoJSON; filename: string; }; export declare const removeCustomLayer: (id: string) => { type: string; id: string; }; export declare const toggleCustomLayer: (id: string) => { type: string; id: string; }; export declare const setCustomColor: (id: string, color: string) => { type: string; id: string; color: string; }; //# sourceMappingURL=customLayers.d.ts.map