import { IHeaders } from './IHeaders'; export declare abstract class EndpointHandler { protected static prepareHeaders(token: string): IHeaders; protected static makePostRequestForData(url: string, dataToken: string, meteringPointId: string | string[]): Promise; protected static GET(url: string, headers: IHeaders): Promise; protected static POST(url: string, headers: IHeaders, body: string): Promise; protected static checkPossibleSystemErrors(errorCode: number): void; }