import type z from "zod";
export declare const phoenixToolCallSchema: z.ZodObject<{
    type: z.ZodLiteral<"tool_call">;
    tool_call_id: z.ZodString;
    tool_call: z.ZodObject<{
        type: z.ZodLiteral<"function">;
        name: z.ZodString;
        arguments: z.ZodString;
    }, z.core.$strip>;
}, z.core.$strip>;
export type PhoenixToolCall = z.infer<typeof phoenixToolCallSchema>;
//# sourceMappingURL=toolCallSchemas.d.ts.map