import { ViewId } from "./view.types"; export declare const VIEW_LAYOUT_FILE_NAME = "layout"; export declare const VIEW_POPUP_ID: ViewId; export declare const VIEW_SIDEPANEL_ID: ViewId; export declare const VIEW_REACT_ROOT_COMPONENT_TEMPLATE = "import React from \"react\";\nimport { createRoot } from \"react-dom/client\";\nimport Layout from \"%layout_path%\"\nimport View from \"%base_path%\"\n\nconst App = () => {\n return (\n \n \n \n )\n}\n\n// render component\nconst domNode = document.getElementById(\"root\");\nconst root = createRoot(domNode);\nroot.render();";