import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { CatalogMeasurementUnit } from "./CatalogMeasurementUnit"; import { InventoryAdjustment } from "./InventoryAdjustment"; import { InventoryChangeType } from "./InventoryChangeType"; import { InventoryPhysicalCount } from "./InventoryPhysicalCount"; export declare const InventoryChange: core.serialization.ObjectSchema; export declare namespace InventoryChange { interface Raw { type?: InventoryChangeType.Raw | null; physical_count?: InventoryPhysicalCount.Raw | null; adjustment?: InventoryAdjustment.Raw | null; measurement_unit?: CatalogMeasurementUnit.Raw | null; measurement_unit_id?: string | null; } }