import type { PromptTemplate } from './types.js'; import type { ToolSet } from '../tools/Tool.js'; export declare const DEFAULT_HANDOFF_INSTRUCTION = "\n## HANDOFF CONTEXT (CRITICAL)\nYou are receiving a handoff. Check the conversation history for the 'handoff' tool result.\nThe user's original intent is in the 'reason' or 'summary' field.\nDO NOT re-greet or ask \"How can I help?\".\nACT on their specific need immediately.\n- If they wanted to perform an action, start IMMEDIATELY.\n- If they asked a question, answer it IMMEDIATELY.\n"; export declare const SUPPORT_AGENT_TEMPLATE: PromptTemplate; export declare const SALES_AGENT_TEMPLATE: PromptTemplate; export declare const TRIAGE_AGENT_TEMPLATE: PromptTemplate; export declare function createSupportAgentTemplate(tools?: ToolSet): PromptTemplate; export declare const BUILTIN_TEMPLATES: Record;