import type { AgentJsonConfig } from '@n8n/api-types'; import { type TelemetryEventDef } from '@n8n/telemetry'; import type { GenericValue } from 'n8n-workflow'; export declare function toolIdentifiersFromConfig(config: AgentJsonConfig | null): string[]; export declare function skillIdentifiersFromConfig(config: AgentJsonConfig | null): string[]; export declare function taskIdentifiersFromConfig(config: AgentJsonConfig | null): string[]; export interface BuilderConfigDiffEvent { entry: TelemetryEventDef; properties: Record; } export declare function collectBuilderConfigDiffEvents(oldConfig: AgentJsonConfig | null, newConfig: AgentJsonConfig): BuilderConfigDiffEvent[]; export type BuilderTrackFn = (entry: TelemetryEventDef, properties: Record) => void;