import { BaseRequestOptions, BaseService, PaginatedRequestOptions, Sudo } from '../infrastructure'; export declare class ProtectedTags extends BaseService { all(projectId: string | number, options?: PaginatedRequestOptions): Promise; protect(projectId: string | number, tagName: string, options?: BaseRequestOptions): Promise; show(projectId: string | number, tagName: string, options?: Sudo): Promise; unprotect(projectId: string | number, tagName: string, options?: Sudo): Promise; }