export interface ParsedTTL { ms: number; forever: boolean; } export declare function parseRetentionTTL(ttl: string): ParsedTTL; export declare function isExpired(ttl: string, createdAt: string, now: Date): boolean;