import { Flavor } from '../plan/Flavor';
import { Period } from '../plan/Period';
import { Price } from '../../order/Price';
/** Usage of plans */
export interface PlanResponse {
    /** List of consumption details by flavor */
    flavors: Flavor[];
    /** Requested period */
    period: Period;
    /** Project ID of the fetched plans */
    projectId: string;
    /** Total savings for all the flavors */
    totalSavings: Price;
}
//# sourceMappingURL=PlanResponse.d.ts.map