///
import { ChartData, ChartOptions } from "chart.js/auto";
export interface LineGraphProps {
customHeadingContent?: JSX.Element;
data?: ChartData<"line">;
options?: ChartOptions;
}
export declare const LineGraph: {
({ options, data, customHeadingContent, }: LineGraphProps): import("react/jsx-runtime").JSX.Element;
defaultProps: {
options: (locale: string) => import("chart.js/dist/types/utils")._DeepPartialObject & import("chart.js/auto").ElementChartOptions & import("chart.js/auto").PluginChartOptions & import("chart.js/auto").DatasetChartOptions & import("chart.js/auto").ScaleChartOptions>;
data: ChartData<"line", (number | import("chart.js/auto").Point | null)[], unknown>;
};
};