import { LRUCache } from "lru-cache"; import { DateRangeIso, GranularDateTime } from "./Types.js"; import { Zone } from "luxon"; export declare class Cache { slashDate: LRUCache; roundDateUp: LRUCache; ranges: LRUCache; } export declare class Caches { zones: LRUCache; yaml: LRUCache; caches: [Zone, Cache][]; zone(timezone: Zone): Cache; }