import type { BuiltTool } from '@n8n/agents'; import type { BuilderTrackFn } from '../builder-config-telemetry'; export interface ConfigureChannelToolDeps { agentId: string; projectId: string; listChatIntegrationTypes: () => string[]; track: BuilderTrackFn; } export declare function buildConfigureChannelTool(deps: ConfigureChannelToolDeps): BuiltTool;