import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { CatalogCustomAttributeDefinitionType } from "./CatalogCustomAttributeDefinitionType"; export declare const CatalogCustomAttributeValue: core.serialization.ObjectSchema; export declare namespace CatalogCustomAttributeValue { interface Raw { name?: (string | null | undefined) | null; string_value?: (string | null | undefined) | null; custom_attribute_definition_id?: string | null; type?: CatalogCustomAttributeDefinitionType.Raw | null; number_value?: (string | null | undefined) | null; boolean_value?: (boolean | null | undefined) | null; selection_uid_values?: (string[] | null | undefined) | null; key?: string | null; } }