import type { Direction } from '../../editor/types'; import type { SceneHandle } from '../../editor/scene'; import type { MudletMap } from '../../mapIO'; export declare function StubPanel({ selection, map, sceneRef }: { selection: { kind: 'stub'; roomId: number; dir: Direction; }; map: MudletMap; sceneRef: { current: SceneHandle | null; }; }): import("react").JSX.Element;