export declare const browserLocalStorageProvider: Readonly<{ getItem: (key: string) => Promise; setItem: (key: string, value: string) => Promise; removeItem: (key: string) => Promise; getKeys: () => Promise; }>;