import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { FulfillmentRecipient } from "./FulfillmentRecipient"; export declare const FulfillmentShipmentDetails: core.serialization.ObjectSchema; export declare namespace FulfillmentShipmentDetails { interface Raw { recipient?: FulfillmentRecipient.Raw | null; carrier?: (string | null | undefined) | null; shipping_note?: (string | null | undefined) | null; shipping_type?: (string | null | undefined) | null; tracking_number?: (string | null | undefined) | null; tracking_url?: (string | null | undefined) | null; placed_at?: string | null; in_progress_at?: string | null; packaged_at?: string | null; expected_shipped_at?: (string | null | undefined) | null; shipped_at?: string | null; canceled_at?: (string | null | undefined) | null; cancel_reason?: (string | null | undefined) | null; failed_at?: string | null; failure_reason?: (string | null | undefined) | null; } }