import { PersistentStorage } from '../types'; export declare class MMKVStorageWrapper implements PersistentStorage { protected storage: MMKVStorageInterface; constructor(storage: MMKVStorageInterface); getItem(key: string): Promise; removeItem(key: string): Promise; setItem(key: string, value: string | null): Promise; } interface MMKVStorageInterface { getItem(key: string): Promise; setItem(key: string, value: string): Promise; removeItem(key: string): boolean | undefined | Promise; } export {};