import { SICacheOptions, SICacheRecipe } from '../../'; declare class CacheFetcher { private defaultRecipe; private storingHard; private storingSoftWide; private storingSoftLocal; constructor(defaultOptions?: SICacheOptions, defaultRecipe?: SICacheRecipe); get(recipe?: SICacheRecipe): Promise; private getData; private storeData; } export declare const cacheFetcher: { getFetcher: (defaultOptions?: SICacheOptions | undefined) => CacheFetcher; }; export {};