import { InjectionKey, Ref } from 'vue'; import type { DefineComponent } from 'vue'; export type CreateContext = { Provider?: DefineComponent; Consumer?: DefineComponent; injectKey: InjectionKey>; }; export declare const createContext: (defaultValue?: T) => CreateContext; export declare const useContext: (context: CreateContext) => any;