import { CreateOrUpdateTagRequestDto, RetrieveTagQueryDto } from '@n8n/api-types'; import { AuthenticatedRequest } from '@n8n/db'; import { Response } from 'express'; import { TagService } from '../services/tag.service'; export declare class TagsController { private readonly tagService; constructor(tagService: TagService); getAll(_req: AuthenticatedRequest, _res: Response, query: RetrieveTagQueryDto): Promise; createTag(_req: AuthenticatedRequest, _res: Response, payload: CreateOrUpdateTagRequestDto): Promise; updateTag(_req: AuthenticatedRequest, _res: Response, tagId: string, payload: CreateOrUpdateTagRequestDto): Promise; deleteTag(_req: AuthenticatedRequest, _res: Response, tagId: string): Promise; }