export interface IIuguChangePlanSimulation {
    cost: number;
    cycles: number;
    discount: number;
    expiresAt: string;
    newPlan: string;
    oldPlan: string;
}
