import { EndpointHandler } from '../EndpointHandler'; import { IMeteringPointsChargesResponse } from './data/IMeteringPointsChargesResponse'; import { IMeteringPointsDetailsResponse } from './data/IMeteringPointsDetailsResponse'; import { IMeteringPointsResponse } from './data/IMeteringPointsResponse'; export declare class MeteringPointsEndpointHandler extends EndpointHandler { private static endpointAddress; private static meteringPointsPath; private static getDetailsPath; private static getChargesPath; static getPoints(dataToken: string, includeAll?: boolean): Promise; static getDetails(dataToken: string, meteringPointId: string | string[]): Promise; static getCharges(dataToken: string, meteringPointId: string | string[]): Promise; }