import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { InventoryChange } from "./InventoryChange"; export declare const BatchChangeInventoryRequest: core.serialization.ObjectSchema; export declare namespace BatchChangeInventoryRequest { interface Raw { idempotency_key: string; changes?: (InventoryChange.Raw[] | null | undefined) | null; ignore_unchanged_counts?: (boolean | null | undefined) | null; } }