import { PriceData } from './data'; import { ValidSupplyArea, ValidSupplier } from './suppliers'; declare class PriceFetcher { private energiDataService; private nrgi; private aura; private getSupplierFromString; /** * * @param supplierName The supplier from where to get the price data * @param dates A single or multiple dates to query for * @param area Grid area of Denmark. DK1 for West Denmark, DK2 for East Denmark * @returns */ getPrices(supplierName: ValidSupplier, dates: Date[] | string[] | Date | string, area: ValidSupplyArea): Promise; } export default PriceFetcher;