import { RequestConfiguration } from '..'; import { AbstractSentinelHubV3Layer } from '../layer/AbstractSentinelHubV3Layer'; import { GetStatsParams } from '../layer/const'; import { StatisticsProvider } from './StatisticsProvider'; import { StatisticalApiPayload, StatisticalApiResponse } from './const'; export declare class StatisticalApi implements StatisticsProvider { getStats(layer: AbstractSentinelHubV3Layer, params: GetStatsParams, reqConfig?: RequestConfiguration): Promise; getStatistics(shServiceHostname: string, payload: StatisticalApiPayload, reqConfig?: RequestConfiguration): Promise; }