import type * as Square from "../../api/index"; import * as core from "../../core"; import * as serializers from "../index"; import { CatalogIdMapping } from "./CatalogIdMapping"; import { Error_ } from "./Error_"; export declare const BatchUpsertCatalogObjectsResponse: core.serialization.ObjectSchema; export declare namespace BatchUpsertCatalogObjectsResponse { interface Raw { errors?: Error_.Raw[] | null; objects?: serializers.CatalogObject.Raw[] | null; updated_at?: string | null; id_mappings?: CatalogIdMapping.Raw[] | null; } }