import { ChartData } from "chart.js/auto"; import { ComponentWithGraphAndDatePicker, CostListItem } from "../../../types"; interface CostExplorerBarGraphVisualProps extends ComponentWithGraphAndDatePicker { costList?: CostListItem[]; graphData: ChartData<"bar">; graphOptions: Record; } export declare const CostExplorerBarGraphVisual: ({ withDatePicker, onPeriodChange, onDateChange, periodValue, startDate, endDate, withContainer, withTitle, title, graphData, graphOptions, callToAction, costList, graphTextColor, }: CostExplorerBarGraphVisualProps) => import("react/jsx-runtime").JSX.Element; export {};