import { App, InjectionKey } from 'vue'; export declare const RuntimeEnv: InjectionKey; export declare const fetchRuntimeEnv: () => Promise; export declare const useRuntimeEnv: () => T; export declare const createRuntimeEnv: (env: T) => { install: (app: App) => void; };