import { ComponentWithDatePicker, CustomCurrencyNumberFormat, MeterAggregation } from "../../../types"; import { DataTableCol, DataTableRow } from "../../molecules/DataTable/types"; interface CostExplorerTableVisualProps extends ComponentWithDatePicker { aggregation?: MeterAggregation; columns: DataTableCol[]; creditsShortName: string; customCurrencyNumberFormat?: CustomCurrencyNumberFormat; rows: DataTableRow[]; withPercentage?: boolean; } export declare const CostExplorerTableVisual: ({ withDatePicker, onDateChange, onPeriodChange, startDate, endDate, periodValue, title, withContainer, withTitle, rows, columns, callToAction, creditsShortName, customCurrencyNumberFormat, withPercentage, }: CostExplorerTableVisualProps) => import("react/jsx-runtime").JSX.Element; export {};