import { InjectionKey, VNode, DefineComponent } from 'vue'; type ContextType = T; type CreateContext = DefineComponent<{}, () => VNode | VNode[] | undefined, T>; export declare const createContext: (contextInjectKey?: InjectionKey>, injectCompName?: string) => CreateContext; export declare const useContext: (contextInjectKey?: string | InjectionKey>, defaultValue?: ContextType) => T; export {};