import { CachifiedOptions, CachifiedOptionsWithSchema } from './common'; import { CreateReporter } from './reporter'; type PartialOptions, OptionalKeys extends string | number | symbol> = Omit & Partial>>; /** * create a pre-configured version of cachified */ export declare function configure>>(defaultOptions: Opts, defaultReporter?: CreateReporter): { (options: PartialOptions, keyof Opts>, reporter?: CreateReporter): Promise; (options: PartialOptions, keyof Opts>, reporter?: CreateReporter): Promise; }; export {};