import { BillingDeterminantsUnits, RateElementClassification, RateElementTypeEnum } from '../constants'; import LoadProfile from '../LoadProfile'; import { DemandArgs } from '../types'; import BillingDeterminants from './_BillingDeterminants'; declare class Demand extends BillingDeterminants { private _loadProfile; private _demandProfile; rateElementType: RateElementTypeEnum; rateElementClassification: RateElementClassification; units: BillingDeterminantsUnits; constructor(args: DemandArgs, loadProfile: LoadProfile); calculate(): Array; } export default Demand;