import "./storage.mjs"; /** * Per-tier age threshold in days. Default ladder collapses on these gates: * - raw → d7 once a daily file is older than `raw` days (default 7). * - d7 → d30 once the entire weekly bucket sits behind `d7` days (default 30). * - d30 → d90 once the entire monthly bucket sits behind `d30` days (default 90). */ interface CompactionThresholds { raw?: number; d7?: number; d30?: number; } declare function enumeratePartitions(startDate: string, endDate: string): string[]; export { CompactionThresholds, enumeratePartitions };