import { EstimationResult } from '@cloud-carbon-footprint/common'; import { DateRange } from '../../../../Types'; declare const sortByDate: (data: EstimationResult[]) => EstimationResult[]; declare const filterBy: (data: EstimationResult[], range: DateRange, defaultRange: DateRange) => EstimationResult[]; export { sortByDate, filterBy };