import type { ToolSet } from 'ai'; import type { ToolDeclaration } from '../capabilities/index.js'; import type { HarnessConfig } from '../types/index.js'; export declare function createTransferToTriageAISDKTool(triageAgentId: string, specialistScope?: string): ToolSet[string]; export declare function createTransferToTriageDeclaration(triageAgentId: string, specialistScope?: string): ToolDeclaration; export declare function shouldInjectTransferToTriage(triageAgentId: string | undefined, retriagePolicy: HarnessConfig['retriagePolicy'], specialistAgentId: string, triageAgentExists: boolean, isTriageSpecialist: boolean): boolean;