import { z } from 'zod';
import { Tool } from '../core/types.js';
declare const handoffArgsSchema: z.ZodObject<{
    agentName: z.ZodString;
    reason: z.ZodString;
}, "strip", z.ZodTypeAny, {
    reason: string;
    agentName: string;
}, {
    reason: string;
    agentName: string;
}>;
type HandoffArgs = z.infer<typeof handoffArgsSchema>;
export declare const handoffTool: Tool<HandoffArgs, any>;
export {};
//# sourceMappingURL=handoff.d.ts.map