import { getScrollBars } from "../scene/scrollbars"; import type { InteractiveSceneRenderConfig, RenderableElementsMap } from "../scene/types"; declare const _renderInteractiveScene: ({ app, canvas, elementsMap, visibleElements, selectedElements, allElementsMap, scale, appState, renderConfig, editorInterface, animationState, deltaTime, }: InteractiveSceneRenderConfig) => { scrollBars?: ReturnType; atLeastOneVisibleElement: boolean; elementsMap: RenderableElementsMap; animationState?: typeof animationState; }; /** * Interactive scene is the ui-canvas where we render bounding boxes, selections * and other ui stuff. */ export declare const renderInteractiveScene: (renderConfig: InteractiveSceneRenderConfig) => ReturnType; export {};