/** * The level of permission that a seller or other applications requires to * view this custom attribute definition. * The `Visibility` field controls who can read and write the custom attribute values * and custom attribute definition. */ export declare const CustomAttributeDefinitionVisibility: { readonly VisibilityHidden: "VISIBILITY_HIDDEN"; readonly VisibilityReadOnly: "VISIBILITY_READ_ONLY"; readonly VisibilityReadWriteValues: "VISIBILITY_READ_WRITE_VALUES"; }; export type CustomAttributeDefinitionVisibility = (typeof CustomAttributeDefinitionVisibility)[keyof typeof CustomAttributeDefinitionVisibility];