import type { ReactNode } from 'react';
import type { BaseMapProps } from '../../types/mapTypes';
interface MapContainerProps extends BaseMapProps {
    children: ReactNode;
}
declare const BentoMapContainer: ({ height, center, zoom, children, tileLayer }: MapContainerProps) => import("react/jsx-runtime").JSX.Element;
export default BentoMapContainer;
