import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Money } from "./Money"; import { SubscriptionPricingType } from "./SubscriptionPricingType"; export declare const SubscriptionPricing: core.serialization.ObjectSchema; export declare namespace SubscriptionPricing { interface Raw { type?: SubscriptionPricingType.Raw | null; discount_ids?: (string[] | null | undefined) | null; price_money?: Money.Raw | null; } }