import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { ItemFulfillmentLineItem } from "./ItemFulfillmentLineItem"; import { ItemFulfillmentLineSalesOrderLine } from "./ItemFulfillmentLineSalesOrderLine"; import { ItemFulfillmentLineTrackingCategoriesItem } from "./ItemFulfillmentLineTrackingCategoriesItem"; import { RemoteField } from "./RemoteField"; export declare const ItemFulfillmentLine: core.serialization.ObjectSchema; export declare namespace ItemFulfillmentLine { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; item?: ItemFulfillmentLineItem.Raw | null; sales_order_line?: ItemFulfillmentLineSalesOrderLine.Raw | null; quantity?: string | null; tracking_categories?: (ItemFulfillmentLineTrackingCategoriesItem.Raw | null | undefined)[] | null; remote_created_at?: string | null; remote_updated_at?: string | null; remote_was_deleted?: boolean | null; remote_fields?: RemoteField.Raw[] | null; } }