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