import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { UpdateTransferOrderLineData } from "./UpdateTransferOrderLineData"; export declare const UpdateTransferOrderData: core.serialization.ObjectSchema; export declare namespace UpdateTransferOrderData { interface Raw { source_location_id?: (string | null | undefined) | null; destination_location_id?: (string | null | undefined) | null; expected_at?: (string | null | undefined) | null; notes?: (string | null | undefined) | null; tracking_number?: (string | null | undefined) | null; line_items?: (UpdateTransferOrderLineData.Raw[] | null | undefined) | null; } }