1 | import * as React from "react";
|
2 | import { ReactGoogleChartProps } from "./types";
|
3 | export declare const ChartContext: React.Context<Partial<ReactGoogleChartProps>>;
|
4 | export declare const ContextProvider: ({ children, value, }: {
|
5 | children: any;
|
6 | value: ReactGoogleChartProps;
|
7 | }) => React.JSX.Element;
|