type RequestStore = Record; export declare const runWithRequestStorage: (fn: (...args: any[]) => R) => R; export declare const getRequestStore: () => RequestStore | null; export declare const getRequestStorageValueOrDefault: (key: string, defaultVal: T) => T; export declare const getRequestStorageValue: (key: string) => T | null; export declare const getRequestStorageValueRequired: (key: string, errorMsg?: string) => T; export declare const setRequestStorageValue: (key: string, value: T) => T; export {}; //# sourceMappingURL=request-storage.d.ts.map