import LoadProfile from '../LoadProfile'; import BillingDeterminants from './_BillingDeterminants'; import { RateElementClassification, BillingDeterminantsUnits, RateElementTypeEnum } from '../constants'; import type { DemandPerDayArgs } from '../types'; /** * @deprecated Use the unified `Demand` class instead with demandPeriod: "daily". */ declare class DemandPerDay extends BillingDeterminants { private _filters; private _loadProfile; rateElementType: RateElementTypeEnum; rateElementClassification: RateElementClassification; units: BillingDeterminantsUnits; constructor(filters: DemandPerDayArgs, loadProfile: LoadProfile); filteredLoadProfile(): LoadProfile; calculate(): Array; } export default DemandPerDay;