import { ComponentWithDatePicker, MeterAggregation } from "../../../types"; export interface CostExplorerTableProps extends ComponentWithDatePicker { aggregation?: MeterAggregation; withPercentage?: boolean; } export declare const CostExplorerTable: ({ onDateChange, onPeriodChange, startDate, endDate, periodValue, hideLoader, onError, onLoadingChange, withPercentage, aggregation, ...props }: CostExplorerTableProps) => import("react/jsx-runtime").JSX.Element | null;