/** * 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 { MapFn } from "../types/context"; /** * Context Consumer * @param providerTag * @param consumer * @param mapFn */ export declare const contextConsumer: (providerTag: string, consumer: Element, mapFn?: MapFn | undefined) => void;