/** Cache strategy for a reporting query. */ export declare const CacheMode: { readonly StaleIfSlow: "stale-if-slow"; readonly StaleWhileRevalidate: "stale-while-revalidate"; readonly MustRevalidate: "must-revalidate"; readonly NoCache: "no-cache"; }; export type CacheMode = (typeof CacheMode)[keyof typeof CacheMode];