export declare class SecureStorage { static storeValue(key: string, value: string): Promise; static getValue(key: string): Promise; static removeValue(key: string): Promise; }