import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { CatalogCustomAttributeValue } from "./CatalogCustomAttributeValue"; import { CatalogV1Id } from "./CatalogV1Id"; export declare const CatalogObjectBase: core.serialization.ObjectSchema; export declare namespace CatalogObjectBase { interface Raw { id: string; updated_at?: string | null; version?: (bigint | number) | null; is_deleted?: boolean | null; custom_attribute_values?: Record | null; catalog_v1_ids?: CatalogV1Id.Raw[] | null; present_at_all_locations?: boolean | null; present_at_location_ids?: string[] | null; absent_at_location_ids?: string[] | null; image_id?: string | null; } }