export declare const PBKDF_ITERATIONS = 100000; export declare function isBasicSeed(entropy: ArrayBuffer): Promise; export declare function isPasswordSeed(entropy: ArrayBuffer): Promise; export declare function mnemonicToEntropy(mnemonicArray: string[], password?: string): Promise; export declare function pbkdf2Sha512(key: ArrayBuffer, salt: string, iterations: number): Promise; export declare function hmacSha512(phrase: string, password: string): Promise; export declare function stringToIntArray(str: string, size?: number): Uint8Array;