import { HashOptions, HashResult } from './types'; export * from './types'; export declare class Argon2 { /** * Create a Argon2 hash, using password, salt and options. * * Delegates to react-native-argon2 internally. * * @param password - The password * @param salt - The salt * @param opts - Hashing options specific to Argon2 */ static hash(password: string | Uint8Array, salt: string | Uint8Array, opts?: HashOptions): Promise; }