import './style.css'; import KrgzEditorTabs from './components/KrgzEditorTabs.vue'; import KrgzExplorer from './components/KrgzExplorerSubdir.vue'; import KrgzPreview from './components/KrgzPreview.vue'; import KrgzProcessTabs from './components/KrgzProcessTabs.vue'; import KrgzSandbox from './components/KrgzSandbox.vue'; import { useSandbox } from './composables'; export * from './typedoc-entry.ts'; declare const i18nMessages: { ar: { krgz: { dir: string; sandbox: { general: { close: string; restart: string; stop: string; }; loading: { booting: string; editor: string; files: string; preview: string; processes: string; terminals: string; }; panel: { editor: { readonly: string; }; preview: { reload: string; }; terminals: { new: string; open: string; }; }; toggle: { code: string; fullscreen: string; processes: string; result: string; solve: string; theme: string; terminal: string; }; }; }; }; de: { krgz: { dir: string; sandbox: { general: { close: string; restart: string; stop: string; }; loading: { booting: string; editor: string; files: string; preview: string; processes: string; terminals: string; }; panel: { editor: { readonly: string; }; preview: { reload: string; }; terminals: { new: string; open: string; }; }; toggle: { code: string; fullscreen: string; processes: string; result: string; solve: string; theme: string; terminal: string; }; }; }; }; en: { krgz: { dir: string; sandbox: { general: { close: string; restart: string; stop: string; }; loading: { booting: string; editor: string; files: string; preview: string; processes: string; terminals: string; }; panel: { editor: { readonly: string; }; preview: { reload: string; }; terminals: { new: string; open: string; }; }; toggle: { code: string; fullscreen: string; processes: string; result: string; solve: string; theme: string; terminal: string; }; }; }; }; }; export { i18nMessages, KrgzEditorTabs, KrgzExplorer, KrgzPreview, KrgzProcessTabs, KrgzSandbox, useSandbox, };