import { GoogleViz, GoogleChartWrapper, ReactGoogleChartProps, GoogleChartDashboard } from "../../types";
export type ChartDrawArgs = {
    data: ReactGoogleChartProps["data"];
};
export type UseGoogleChartDataTableParams = ReactGoogleChartProps & {
    googleChartWrapper?: GoogleChartWrapper | null;
    google: GoogleViz;
    googleChartDashboard?: GoogleChartDashboard | null;
};
export declare const useGoogleChartDataTable: (props: UseGoogleChartDataTableParams) => void;
