import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { AdditionalRecipient } from "./AdditionalRecipient"; import { Address } from "./Address"; import { Order } from "./Order"; export declare const Checkout: core.serialization.ObjectSchema; export declare namespace Checkout { interface Raw { id?: string | null; checkout_page_url?: (string | null | undefined) | null; ask_for_shipping_address?: (boolean | null | undefined) | null; merchant_support_email?: (string | null | undefined) | null; pre_populate_buyer_email?: (string | null | undefined) | null; pre_populate_shipping_address?: Address.Raw | null; redirect_url?: (string | null | undefined) | null; order?: Order.Raw | null; created_at?: string | null; additional_recipients?: (AdditionalRecipient.Raw[] | null | undefined) | null; } }