import { Origin } from './types'; import { Storage } from 'webextension-polyfill'; export declare type PersistentAuthenticatorStorage = { get(): Promise; set(origins: Origin[]): Promise; }; export declare const createPersistentAuthenticatorStorage: (storageKey: string, store: Storage.StorageArea) => PersistentAuthenticatorStorage; //# sourceMappingURL=PersistentAuthenticatorStorage.d.ts.map