import { AbstractBaseStrategy } from './abstract.base.strategy.js'; interface IOptions { ttl: number; isLazy: boolean; isCachedForever: boolean; } export declare class ExpirationStrategy extends AbstractBaseStrategy { getItem(key: string): Promise; setItem(key: string, content: any, options: Partial): Promise; clear(): Promise; private isItemExpired; private unsetKey; } export {};