export { preload, load }; import { Config } from './schema'; type Entry = { url: string; size: number; mime: string; }; declare function load(key: string, config: Config): Promise; declare function preload(config: Config): Promise>;