import type * as Square from "../../../../../api/index"; import * as core from "../../../../../core"; import type * as serializers from "../../../../index"; import { Money } from "../../../../types/Money"; import { Phase } from "../../../../types/Phase"; import { SubscriptionSource } from "../../../../types/SubscriptionSource"; export declare const CreateSubscriptionRequest: core.serialization.Schema; export declare namespace CreateSubscriptionRequest { interface Raw { idempotency_key?: string | null; location_id: string; plan_variation_id?: string | null; customer_id: string; start_date?: string | null; canceled_date?: string | null; tax_percentage?: string | null; price_override_money?: Money.Raw | null; card_id?: string | null; timezone?: string | null; source?: SubscriptionSource.Raw | null; monthly_billing_anchor_date?: number | null; phases?: Phase.Raw[] | null; } }