/** !
 * Copyright (c) 2019, Matt Dunn
 *
 * @author Matt Dunn
 */
import React, { ReactNode } from "react";
import { WireframeAnnotation, WireframeAnnotationAPI } from "./api";
export declare const WireframeAnnotationContext: React.Context<WireframeAnnotationAPI>;
export declare const WireframeAnnotationComponentContext: React.Context<WireframeAnnotation>;
declare type WireframeProviderProps = {
    children: ReactNode;
    api: WireframeAnnotationAPI;
};
export declare const WireframeProvider: ({ children, api }: WireframeProviderProps) => JSX.Element;
export {};
