import type { AsyncStorage } from 'oidc-client-ts'; /** * @internal */ export declare class MobileStorage implements AsyncStorage { constructor(); get length(): Promise; key(index: number): Promise; clear(): Promise; getItem(key: string): Promise; setItem(key: string, value: string): Promise; removeItem(key: string): Promise; }