import { OnInit } from '@angular/core'; import { CommonConfigurator } from '@spartacus/product-configurator/common'; import { ICON_TYPE } from '@spartacus/storefront'; import { Observable } from 'rxjs'; import { Configurator } from '../../../core/model/configurator.model'; import { ConfiguratorStorefrontUtilsService } from '../../service/configurator-storefront-utils.service'; import { ConfiguratorAttributeBaseComponent } from '../types/base/configurator-attribute-base.component'; import * as i0 from "@angular/core"; export declare class ConfiguratorAttributeHeaderComponent extends ConfiguratorAttributeBaseComponent implements OnInit { protected configUtils: ConfiguratorStorefrontUtilsService; attribute: Configurator.Attribute; owner: CommonConfigurator.Owner; groupId: string; groupType: Configurator.GroupType; iconTypes: typeof ICON_TYPE; showRequiredMessageForDomainAttribute$: Observable; constructor(configUtils: ConfiguratorStorefrontUtilsService); ngOnInit(): void; /** * Get message key for the required message. Is different for multi- and single selection values * @return {string} - required message key */ getRequiredMessageKey(): string; protected isMultiSelection(): boolean; protected isSingleSelection(): boolean; protected isRequiredAttributeWithDomain(): boolean; /** * Verifies whether the group type is attribute group * * @param groupType {Configurator.GroupType} - group type * @return {boolean} - 'true' if the group type is 'attribute group' otherwise 'false' */ isAttributeGroup(groupType: Configurator.GroupType): boolean; /** * Retrieves a certain conflict link key depending on the current group type for translation. * * @param groupType {Configurator.GroupType}- group type * @return {string} - the conflict link key */ getConflictMessageKey(groupType: Configurator.GroupType): string; /** * Checks if an image is attached * @returns True if an only if at least one image exists */ get hasImage(): boolean; /** * Returns image attached to the attribute (if available) * @returns Image */ get image(): Configurator.Image | undefined; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }