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