import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Error_ } from "./Error_"; import { InventoryChange } from "./InventoryChange"; export declare const GetInventoryChangesResponse: core.serialization.ObjectSchema; export declare namespace GetInventoryChangesResponse { interface Raw { errors?: Error_.Raw[] | null; changes?: InventoryChange.Raw[] | null; cursor?: string | null; } }