import * as z from 'zod/v4'; /** * Cache provider configuration (`cache`). * Provider only - routes are configured via `routeRules`. */ export declare const CacheSchema: z.ZodObject<{ provider: z.ZodOptional>; entrypoint: z.ZodUnion]>; name: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>; /** * Route rules configuration (`routeRules`). * Maps route patterns to route rules. Patterns use the same `[param]` and * `[...rest]` syntax as file-based routing; glob wildcards (`*`) are not supported. * * Example: * ```ts * routeRules: { * '/api/[...path]': { swr: 600 }, * '/products/[...slug]': { maxAge: 3600, tags: ['products'] }, * } * ``` */ export declare const RouteRulesSchema: z.ZodRecord; swr: z.ZodOptional; tags: z.ZodOptional>; }, z.core.$strip>>;