react-google-charts
Version:
react-google-charts React component
11 lines (10 loc) • 410 B
TypeScript
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 {};