export interface PowerAuthStorageUtilsIfc { setString(key: string, value: string, storageType: string): Promise; getString(key: string, storageType: string): Promise; exists(key: string, storageType: string): Promise; remove(key: string, storageType: string): Promise; } export declare const NativeStorageUtils: PowerAuthStorageUtilsIfc;