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