import { z } from "zod"; export declare const WebsearchProviderSchema: z.ZodEnum<{ exa: "exa"; tavily: "tavily"; }>; export declare const WebsearchConfigSchema: z.ZodObject<{ provider: z.ZodOptional>; }, z.core.$strip>; export type WebsearchProvider = z.infer; export type WebsearchConfig = z.infer;