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 {};
