import { DayCurve } from "../../energy/classes/powerCurve.class"; /** * This class defines a profile object; a list of date profile data of specified type and energy tariff, with a dat range */ export declare class Profile { constructor(tariff: string, startDate: string, endDate: string, type: string); profile?: DayCurve[]; tariff: string; startDate: string; endDate: string; type: string; }