export declare class TtlCache { private readonly store; get(key: string): T | undefined; set(key: string, value: T, ttlMs: number): void; has(key: string): boolean; delete(key: string): boolean; clear(): void; }