import * as z from "zod/v4"; import { FusionServerToolConfig, FusionServerToolConfig$Outbound } from "./fusionservertoolconfig.js"; /** * OpenRouter built-in server tool: fans out the user prompt to a panel of analysis models, then asks a judge model to summarize their collective output as structured JSON the outer model can synthesize from. */ export type FusionServerToolOpenRouter = { /** * Configuration for the openrouter:fusion server tool. */ parameters?: FusionServerToolConfig | undefined; type: "openrouter:fusion"; }; /** @internal */ export type FusionServerToolOpenRouter$Outbound = { parameters?: FusionServerToolConfig$Outbound | undefined; type: "openrouter:fusion"; }; /** @internal */ export declare const FusionServerToolOpenRouter$outboundSchema: z.ZodType; export declare function fusionServerToolOpenRouterToJSON(fusionServerToolOpenRouter: FusionServerToolOpenRouter): string; //# sourceMappingURL=fusionservertoolopenrouter.d.ts.map