import type { SceneHandle } from '../../editor/scene'; import { type MapWarning, warningKey } from '../../editor/warnings'; export type { MapWarning }; export { warningKey }; interface MapPanelProps { sceneRef: { current: SceneHandle | null; }; } export declare function MapPanel({ sceneRef }: MapPanelProps): import("react").JSX.Element;