import React from "react"; export interface MapProps { authenticated: boolean; token?: string; children?: React.ReactNode; } export interface MapState { onBoardingShowing: boolean; onFirstPersonViewShowing: boolean; isLoading: boolean; maametTiles: string; containerTooSmall: boolean; } export interface MapDispatch { setOnBoardingShowing: (b: boolean) => void; setContainerTooSmall: (b: boolean) => void; setAuthenticated: (b: boolean) => void; } export declare const Map: ({ children, isLoading, setContainerTooSmall, containerTooSmall, onBoardingShowing, setOnBoardingShowing, maametTiles, authenticated, setAuthenticated, onFirstPersonViewShowing, }: MapProps & MapState & MapDispatch) => JSX.Element;