import { Url } from './types'; declare class Store { #private; get(url: Url): any; set(url: Url, value: unknown): void; setFetcher(fetcher: (url: Url, options?: any) => any): void; getFetcher(): (url: string) => Promise; } export declare const store: Store; export {};