import { type AgentJsonConfig, type AgentSkill, type AgentSkillMutationResponse } from '@n8n/api-types'; import { Logger } from '@n8n/backend-common'; import { Agent } from './entities/agent.entity'; import { AgentRepository } from './repositories/agent.repository'; export declare class AgentSkillsService { private readonly logger; private readonly agentRepository; constructor(logger: Logger, agentRepository: AgentRepository); listSkills(agentId: string, projectId: string): Promise>; getSkill(agentId: string, projectId: string, skillId: string): Promise; createSkill(agentId: string, projectId: string, skill: AgentSkill): Promise; createSkills(agentId: string, projectId: string, skills: AgentSkill[]): Promise; createAndAttachSkill(agentId: string, projectId: string, skill: AgentSkill): Promise; private createSkillsBatch; updateSkill(agentId: string, projectId: string, skillId: string, updates: Partial): Promise; deleteSkill(agentId: string, projectId: string, skillId: string): Promise; removeUnreferencedSkills(entity: Agent, config: AgentJsonConfig): void; private validateSkill; private addSkill; private assertSkillNameIsUnique; private normalizeSkillName; private assertBatchSkillNamesAreUnique; private attachSkillRef; private clearRuntimes; }