import { InstanceUsageDetail } from './InstanceUsageDetail';
import { Price } from '../../order/Price';
/** Instances usage for current month */
export interface InstancesUsage {
    /** Instance usage details */
    detail: InstanceUsageDetail[];
    /** Total cost for the instances */
    total: Price;
}
//# sourceMappingURL=InstancesUsage.d.ts.map