UNPKG

react-google-charts

Version:
11 lines (10 loc) 410 B
import React from "react"; import { GoogleChartControlAndProp } from "../hooks/internal/useGoogleChartControls"; export type FilterControl = (control: GoogleChartControlAndProp) => boolean; type Props = { isReady: boolean; chartControls: GoogleChartControlAndProp[] | null; filter?: FilterControl; }; export declare const GoogleChartControls: (props: Props) => React.JSX.Element | null; export {};