import { HttpService } from '@jollose/core-http'; import { AttributeGroup } from '../domain'; import { AttributeCreateAttributeDto, AttributeCreateAttributeGroupDto, AttributeGetAttributeGroupInVerticalDto, AttributeGetAttributeGroupListInVerticalDto, AttributeUpdateAttributeDto, AttributeUpdateAttributeGroupDto } from '../dto'; export declare class EcomManagementAttributeHttpService { private readonly httpService; private service; private attributeController; constructor(httpService: HttpService); updateAttributeGroup(dto: AttributeUpdateAttributeGroupDto): Promise; updateAttribute(dto: AttributeUpdateAttributeDto): Promise; createAttributeGroup(dto: AttributeCreateAttributeGroupDto): Promise; createAttribute(dto: AttributeCreateAttributeDto): Promise; getAttributeGroupInVertical(dto: AttributeGetAttributeGroupInVerticalDto): Promise; getAll(): Promise; getAttributeGroupListInVertical(dto: AttributeGetAttributeGroupListInVerticalDto): Promise; }