import type { SceneHandle } from '../editor/scene'; import type { MudletMap } from '../mapIO'; import type { RoomPanelSection } from '../editor/plugin'; interface RoomPanelProps { selection: { kind: 'room'; ids: number[]; }; room: NonNullable; map: MudletMap; sceneRef: { current: SceneHandle | null; }; pluginSections?: RoomPanelSection[]; } export declare function RoomPanel({ selection, room, map, sceneRef, pluginSections }: RoomPanelProps): import("react").JSX.Element; export {};