import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Phase } from "./Phase"; import { SubscriptionActionType } from "./SubscriptionActionType"; export declare const SubscriptionAction: core.serialization.ObjectSchema; export declare namespace SubscriptionAction { interface Raw { id?: string | null; type?: SubscriptionActionType.Raw | null; effective_date?: (string | null | undefined) | null; monthly_billing_anchor_date?: (number | null | undefined) | null; phases?: (Phase.Raw[] | null | undefined) | null; new_plan_variation_id?: (string | null | undefined) | null; } }