/** * File-based Cache Adapter * * Local cache implementation using filesystem. * Matches KV interface for local development and Mac Mini deployment. * * Note: This is a server-only module. Do not import in client code. * The tool recedes; file cache works transparently like KV. */ import type { Cache } from '../types.js'; /** * Create a file-based cache matching the KV interface. * * @param cachePath - Directory to store cache files * @returns Cache interface compatible with getPlatform() */ export declare function createFileCache(cachePath: string): Promise;