import type { SceneHandle } from '../editor/scene'; import type { RoomPanelSection, SidebarTab } from '../editor/plugin'; interface SidePanelProps { sceneRef: { current: SceneHandle | null; }; extraTabs?: SidebarTab[]; pluginRoomSections?: RoomPanelSection[]; } export declare function SidePanel({ sceneRef, extraTabs, pluginRoomSections }: SidePanelProps): import("react").JSX.Element; export {};