import { z } from "zod"; /** * Zod schema for session configuration used by the stateful server. * Note: Token optionality and descriptions may be adapted in a subsequent step. */ export declare const SessionConfigSchema: z.ZodObject<{ FMP_ACCESS_TOKEN: z.ZodOptional; FMP_TOOL_SETS: z.ZodOptional; DYNAMIC_TOOL_DISCOVERY: z.ZodOptional; }, "strip", z.ZodTypeAny, { DYNAMIC_TOOL_DISCOVERY?: string | undefined; FMP_TOOL_SETS?: string | undefined; FMP_ACCESS_TOKEN?: string | undefined; }, { DYNAMIC_TOOL_DISCOVERY?: string | undefined; FMP_TOOL_SETS?: string | undefined; FMP_ACCESS_TOKEN?: string | undefined; }>;