import { AgentLlmExecutionTools } from './AgentLlmExecutionTools'; import type { CreateAgentLlmExecutionToolsOptions } from './CreateAgentLlmExecutionToolsOptions'; /** * Creates new AgentLlmExecutionTools that wrap underlying LLM tools with agent-specific behavior * * @public exported from `@promptbook/core` */ export declare const createAgentLlmExecutionTools: ((options: CreateAgentLlmExecutionToolsOptions) => AgentLlmExecutionTools) & { packageName: string; className: string; };