import { InjectionKey } from 'vue';
export declare function useProvide(keyName: string | symbol, instance: Record<string, unknown>): Record<string, symbol>;
export declare function useInject<T>(keyName: InjectionKey<any>): T;
