import type { CachedDocument } from '@grubtech/integration-core'; export declare class FileCache { private cacheDir; private readonly TTL; constructor(cacheDir?: string); get(key: string): Promise; set(key: string, document: Omit): Promise; getAllCachedDocs(): Promise; } //# sourceMappingURL=file-cache.d.ts.map