import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { BatchRetrieveInventoryChangesSort } from "./BatchRetrieveInventoryChangesSort"; import { InventoryAdjustmentReasonId } from "./InventoryAdjustmentReasonId"; import { InventoryChangeType } from "./InventoryChangeType"; import { InventoryState } from "./InventoryState"; export declare const BatchRetrieveInventoryChangesRequest: core.serialization.ObjectSchema; export declare namespace BatchRetrieveInventoryChangesRequest { interface Raw { catalog_object_ids?: (string[] | null | undefined) | null; location_ids?: (string[] | null | undefined) | null; types?: (InventoryChangeType.Raw[] | null | undefined) | null; states?: (InventoryState.Raw[] | null | undefined) | null; updated_after?: (string | null | undefined) | null; updated_before?: (string | null | undefined) | null; cursor?: (string | null | undefined) | null; limit?: (number | null | undefined) | null; sort?: BatchRetrieveInventoryChangesSort.Raw | null; reason_ids?: (InventoryAdjustmentReasonId.Raw[] | null | undefined) | null; } }