import { UIKITTheme } from "../globalStyles"; import { CostResponse, CreditUnit, GraphType, USAGE_GRAPHS_VIEW_FUNCTION } from "../types"; export declare const getCostBarGraphData: (costs: CostResponse | null | undefined, theme: UIKITTheme, creditUnit?: CreditUnit, dataType?: GraphType, graphViewFunction?: USAGE_GRAPHS_VIEW_FUNCTION, locale?: string) => { labels: string[]; datasets: { data: number[]; backgroundColor: string; barPercentage: number; borderColor: string; categoryPercentage: number; hoverBackgroundColor: string; hoverBorderColor: string; label: string; }[]; };