import type { CacheFile } from "./types.js"; export declare function fingerprint(apiKey: string): string; export declare function isCacheValid(cache: CacheFile | null, baseUrl: string, apiKey: string): boolean; export declare function readCache(path: string): Promise; export declare function writeCache(path: string, cache: CacheFile): Promise;