import { ServiceWithCPUUtilization, ComputeUsage, Cost } from '@cloud-carbon-footprint/core';
import { ServiceWrapper } from './ServiceWrapper';
export default class RDSComputeService extends ServiceWithCPUUtilization {
    private readonly serviceWrapper;
    serviceName: string;
    constructor(serviceWrapper: ServiceWrapper);
    getUsage(start: Date, end: Date, region: string): Promise<ComputeUsage[]>;
    private getCpuUtilization;
    private getTotalVCpusByDate;
    getCosts(start: Date, end: Date, region: string): Promise<Cost[]>;
}
