/** * Copyright (c) 2020 Dorian Cortes, Gary Valverde * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ import { Context } from "../types/context"; /** * * @param initialValue * @return { Context } */ export declare function createContext(initialValue: object): Context; export declare function consumeContext(context: Context, callback: Function): () => void;