import { BaseService } from '../infrastructure'; import { BaseModelContructorOptions } from '../infrastructure/BaseService'; export declare type CustomAttributeId = string | number; declare class ResourceCustomAttributes extends BaseService { constructor(resourceType: string, baseParams: BaseModelContructorOptions); all(resourceId: ResourceId): Promise; set(resourceId: ResourceId, customAttributeId: CustomAttributeId, value: string): Promise; remove(resourceId: ResourceId, customAttributeId: CustomAttributeId): Promise; show(resourceId: ResourceId, customAttributeId: CustomAttributeId): Promise; } export default ResourceCustomAttributes;