export declare class CacheTTL { private fetchedAt; private ttl; constructor(ttlMs: number); isValid(): boolean; touch(): void; invalidate(): void; }