import { InjectionKey } from 'vue'; export interface CreateContextOptions { readonly?: boolean; createProvider?: boolean; native?: boolean; } export declare function createContext(context: any, key?: InjectionKey, options?: CreateContextOptions): { state: any; }; export declare function useContext(key: InjectionKey, native?: boolean): T;