import { z } from "zod"; export declare const RuntimeFallbackConfigSchema: z.ZodObject<{ enabled: z.ZodOptional; retry_on_errors: z.ZodOptional>; max_fallback_attempts: z.ZodOptional; cooldown_seconds: z.ZodOptional; timeout_seconds: z.ZodOptional; notify_on_fallback: z.ZodOptional; }, z.core.$strip>; export type RuntimeFallbackConfig = z.infer;