import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { TransferOrderLine } from "./TransferOrderLine"; import { TransferOrderStatus } from "./TransferOrderStatus"; export declare const TransferOrder: core.serialization.ObjectSchema; export declare namespace TransferOrder { interface Raw { id?: string | null; source_location_id?: (string | null | undefined) | null; destination_location_id?: (string | null | undefined) | null; status?: TransferOrderStatus.Raw | null; created_at?: string | null; updated_at?: string | null; expected_at?: (string | null | undefined) | null; completed_at?: string | null; notes?: (string | null | undefined) | null; tracking_number?: (string | null | undefined) | null; created_by_team_member_id?: string | null; line_items?: (TransferOrderLine.Raw[] | null | undefined) | null; version?: (bigint | number) | null; } }