export declare enum LocationActionsType { TOGGLE_LOCATION = "TOGGLE_LOCATION", SET_LOCATION = "SET_LOCATION" } export interface ToggleLocation { type: LocationActionsType; payload: { isShowing: boolean; }; } export declare function toggleLocation(isShowing: boolean): ToggleLocation; export interface SetLocation { type: LocationActionsType; payload: { location: [number, number]; }; } export declare function setLocation(location: [number, number]): SetLocation; export type LocationActions = ToggleLocation & SetLocation;