import { PlanItem } from "./PlanItem";
export interface UpdatePlanParams {
    description?: string;
    discount?: number;
    goal?: number;
    items?: Omit<PlanItem, "id" | "price" | "created_at" | "updated_at">[];
    name?: string;
    notify_reactivation_at?: string | null;
    status?: "actived" | "paused" | "canceled";
}
//# sourceMappingURL=UpdatePlanParams.d.ts.map