import { TagRepository } from '@n8n/db';
export declare class WorkflowHookContextService {
    private readonly tagRepository;
    constructor(tagRepository: TagRepository);
    getWorkflowTags(workflowId: string): Promise<string[]>;
}
