import { CachifiedOptions, CachifiedOptionsWithSchema, Cache } from './common'; import { CreateReporter } from './reporter'; /** * Get the internal pending values cache for a given cache */ export declare function getPendingValuesCache(cache: Cache): Map; export declare function cachified(options: CachifiedOptionsWithSchema, reporter?: CreateReporter): Promise; export declare function cachified(options: CachifiedOptions, reporter?: CreateReporter): Promise;