/** Indicates how the inventory change was applied to a tracked product quantity. */ export declare const InventoryChangeType: { readonly PhysicalCount: "PHYSICAL_COUNT"; readonly Adjustment: "ADJUSTMENT"; }; export type InventoryChangeType = (typeof InventoryChangeType)[keyof typeof InventoryChangeType];