import { DataSource, Repository } from '@n8n/typeorm'; import { Agent } from '../entities/agent.entity'; export declare class AgentRepository extends Repository { constructor(dataSource: DataSource); findByProjectId(projectId: string): Promise; findByIdAndProjectId(id: string, projectId: string): Promise; findPublished(): Promise; findByIntegrationCredential(type: string, credentialId: string, projectId: string, excludeAgentId: string): Promise; }