export type CacheDecision = { enabled: boolean; ttl?: number; staleWhileRevalidate?: number; reason?: string; }; export type CachePolicyContext = { path: string; input: any; context: any; }; export declare function defaultCachePolicy(args: CachePolicyContext): CacheDecision;