import type { MaybeRef } from '@vueuse/core'; import type { InjectionKey } from 'vue'; import type { Store } from '../core'; import type { PlaygroundPkgCdn, PlaygroundTheme } from './utils/types-helper'; export declare const DEFAULT_TITLE: "Demo"; export declare const PLAYGROUND_COMPONENT_NAME: "Playground"; export declare const FILE_BASE_URL: "file:///root/"; export declare const PROJECT_ID_PREFIX: "project"; export declare const DEFAULT_FILE_NAME: "comp.vue"; export declare const IMPORT_JSON_NAME: "import-map.json"; export declare const STORE_INJECT_KEY: InjectionKey; export declare const CLEAR_CONSOLE_INJECT_KEY: InjectionKey>; export declare const SHOW_IMPORT_MAP_INJECT_KEY: InjectionKey>; export declare const THEME_INJECT_KEY: InjectionKey>; export declare const SHOW_DARK_MODE_INJECT_KEY: InjectionKey>; export declare const PKG_CDN_INJECT_KEY: InjectionKey>; export declare const DEFAULT_THEME_COLOR = "#42b883"; export declare const GET_LIGHT_THEME: (theme?: PlaygroundTheme | undefined) => PlaygroundTheme; export declare const GET_DARK_THEME: (theme?: PlaygroundTheme | undefined) => PlaygroundTheme; export declare const DEFAULT_VUE_RUNTIME_DOM_CDN: (version: string) => string; export declare const DEFAULT_VUE_COMPILER_SFC_CDN: (version: string) => string; export declare const DEFAULT_ES_MODULE_SHIMS_CDN = "https://unpkg.com/es-module-shims@0.10.1/dist/es-module-shims.min.js";