import { ResourceTag } from './ResourceTag'; export declare class AddOrUpdateTagsRequestBody { private 'image_id'?; tag?: string; private 'image_tag'?; constructor(imageId?: string); withImageId(imageId: string): AddOrUpdateTagsRequestBody; set imageId(imageId: string | undefined); get imageId(): string | undefined; withTag(tag: string): AddOrUpdateTagsRequestBody; withImageTag(imageTag: ResourceTag): AddOrUpdateTagsRequestBody; set imageTag(imageTag: ResourceTag | undefined); get imageTag(): ResourceTag | undefined; } //# sourceMappingURL=AddOrUpdateTagsRequestBody.d.ts.map