vercelAIChatPartToolCallSchema: ZodObject<
    {
        args: ZodType<JSONLiteral, ZodTypeDef, JSONLiteral>;
        toolCallId: ZodString;
        toolName: ZodString;
        type: ZodLiteral<"tool-call">;
    },
    "strip",
    ZodTypeAny,
    {
        args: JSONLiteral;
        toolCallId: string;
        toolName: string;
        type: "tool-call";
    },
    {
        args: JSONLiteral;
        toolCallId: string;
        toolName: string;
        type: "tool-call";
    },
> = ...