import { Injector } from 'static-injector';
import { InjectionKey } from 'vue';
import { VueComponentStaticContructor } from '@/type';
export declare const InjectorKey: InjectionKey<Injector>;
declare module 'vue' {
    interface App {
        getStore(): any;
        getService(token: any): any;
    }
}
export declare function resolveComponent(target: VueComponentStaticContructor): any;
