import type { AgentExecutionCounter } from '@n8n/agents';
import type { Telemetry } from '../../../telemetry';
export declare function createAgentExecutionCounter(telemetry: Telemetry, { agentId, userId }: {
    agentId: string;
    userId?: string;
}): AgentExecutionCounter;
