import { RequiredComponentVars } from '../types'; import { InjectionKey, Component } from 'vue'; export declare const INJECT_COMPONENTS: InjectionKey>>; export type InjectConfigEntry = { injectionKey: InjectionKey; default: T; }; export declare const INJECT_CONFIG: { [key in keyof RequiredComponentVars]: { injectionKey: InjectionKey; default: RequiredComponentVars[key]; }; }; export declare const getInjectConfig: (key: string) => InjectConfigEntry | undefined; export declare const ensureInjectConfig: (key: string) => InjectConfigEntry; //# sourceMappingURL=index.d.ts.map