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