import { type AgentIntegration } from '@n8n/api-types';
import type { Logger } from '@n8n/backend-common';
import type { Agent } from '../entities/agent.entity';
export declare function syncAgentIntegrations(agent: Agent, previous: AgentIntegration[], next: AgentIntegration[], logger: Logger): Promise<void>;
