import { ComputingType, DijkstraResponse } from 'dabeeomaps_api_directions'; export declare class NetworkResponse { code: string; message: string; payload: { [key in string]?: DijkstraResponse; }; constructor(code: string, message: string); addResponse(computingType: ComputingType, response: DijkstraResponse): void; setPayLoad(payload: any): void; }