import type { Config } from './Config.type.js'; import type { FetchResult } from './FetchResult.type.js'; export declare class ExportCache { config: Config; entries?: Record; fetching?: Record>; constructor(config: Config); clear(): void; remove(key: string): boolean; }