import { PromptTemplate } from '../../template.cjs'; import { z } from 'zod'; import '../../errors.cjs'; import '../../internals/types.cjs'; import '../../internals/helpers/guards.cjs'; import '../../internals/serializable.cjs'; import 'ajv'; /** * Copyright 2025 © BeeAI a Series of LF Projects, LLC * SPDX-License-Identifier: Apache-2.0 */ declare const ToolCallingAgentSystemPrompt: PromptTemplate; }, "strip", z.ZodTypeAny, { role: string; instructions?: string | undefined; }, { role: string; instructions?: string | undefined; }>>; declare const ToolCallingAgentTaskPrompt: PromptTemplate; expectedOutput: z.ZodOptional; }, "strip", z.ZodTypeAny, { prompt: string; context?: string | undefined; expectedOutput?: string | undefined; }, { prompt: string; context?: string | undefined; expectedOutput?: string | undefined; }>>; export { ToolCallingAgentSystemPrompt, ToolCallingAgentTaskPrompt };