import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Address } from "./Address"; import { InvoiceRecipientTaxIds } from "./InvoiceRecipientTaxIds"; export declare const InvoiceRecipient: core.serialization.ObjectSchema; export declare namespace InvoiceRecipient { interface Raw { customer_id?: (string | null | undefined) | null; given_name?: string | null; family_name?: string | null; email_address?: string | null; address?: Address.Raw | null; phone_number?: string | null; company_name?: string | null; tax_ids?: InvoiceRecipientTaxIds.Raw | null; } }