/** * 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 { LitElement } from 'lit-element'; import { Context } from '../types/context'; /** * Context Provider * @class */ export declare class ContextProvider extends LitElement { context: Context; value: object; constructor(); render(): import("lit-element").TemplateResult; }