/** * File-based cache implementation. * Supports both overwrite and append (log-style) modes. */ import type { ICache, ICacheConfig } from './interfaces'; /** * Creates a file-based cache instance. */ export declare function createFileCache(config: ICacheConfig): ICache; /** * Creates a cache config for the default .lisa cache directory. * @param skillName - Name of the skill (e.g., 'memory', 'tasks') */ export declare function createCacheConfigFromSkill(skillName: string): ICacheConfig; //# sourceMappingURL=FileCache.d.ts.map