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