import { ICacheStrategy } from './interfaces/ICacheStrategy.js';
export declare class NodeCacheStrategy<T> implements ICacheStrategy<T> {
    private readonly maxItems;
    private cache;
    constructor(maxItems?: number);
    get(key: string): Promise<T | undefined>;
    set(key: string, value: T, ttl?: number): boolean;
}
