/** * Temporal Context Generator * Generates rich temporal context combining in-memory bursts and file-based global state */ import { TemporalContext, ActivityBurst } from './temporal-context.js'; export declare class TemporalContextGenerator { /** * Generate complete temporal context */ static generateContext(activityBursts: ActivityBurst[], currentBurstStart: Date, lastInteraction: Date, currentBurstCount: number, timezone: string, burstGapThreshold: number): TemporalContext; /** * Determine time of day category */ private static getTimeOfDay; /** * Generate temporal grounding metadata */ private static generateTemporalGrounding; } //# sourceMappingURL=temporal-context-generator.d.ts.map