/** Defines the possible types for a custom attribute. */ export declare const CatalogCustomAttributeDefinitionType: { readonly String: "STRING"; readonly Boolean: "BOOLEAN"; readonly Number: "NUMBER"; readonly Selection: "SELECTION"; }; export type CatalogCustomAttributeDefinitionType = (typeof CatalogCustomAttributeDefinitionType)[keyof typeof CatalogCustomAttributeDefinitionType];