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 UpsertCatalogObjectResponse: core.serialization.ObjectSchema; export declare namespace UpsertCatalogObjectResponse { interface Raw { errors?: Error_.Raw[] | null; catalog_object?: serializers.CatalogObject.Raw | null; id_mappings?: CatalogIdMapping.Raw[] | null; } }