import { DataApiAggregateResponse, DataApiHistoricalResponse, DataApiLastResponse } from '../responses'; export declare class DataApiResponseFormatter { static formatResponse(responsePath: string[], response: any): any; static buildLastResponse(response: any): DataApiLastResponse | undefined; static buildAggregateResponse(response: any): DataApiAggregateResponse | undefined; static buildHistoricalResponse(response: any): DataApiHistoricalResponse[]; }