import { Logger } from '@cloud-carbon-footprint/common';
import { ICloudService, FootprintEstimate, Cost, CloudConstantsEmissionsFactors, CloudConstants } from '@cloud-carbon-footprint/core';
import { VolumeUsage } from './StorageUsageMapper';
import { ServiceWrapper } from './ServiceWrapper';
export default class EBS implements ICloudService {
    private serviceWrapper;
    serviceName: string;
    ebsLogger: Logger;
    constructor(serviceWrapper: ServiceWrapper);
    getEstimates(start: Date, end: Date, region: string, emissionsFactors: CloudConstantsEmissionsFactors, constants: CloudConstants): Promise<FootprintEstimate[]>;
    getUsage(startDate: Date, endDate: Date, region: string): Promise<VolumeUsage[]>;
    private getDiskType;
    getCosts(start: Date, end: Date, region: string): Promise<Cost[]>;
}
