import { HdPath } from '@cosmjs/crypto'; /** * KeyUtils provides helpers for working with Nolus accounts. */ export declare class KeyUtils { static getPrivateKeyFromMnemonic(mnemonic: string, hdPath: HdPath): Promise>; static getSeedFromMnemonic(mnemonic: string): Promise>; static getPrivateKeyFromSeed(seed: Uint8Array, hdPath: HdPath): Uint8Array; static getAddressFromPublicKey(publicKey: Uint8Array, prefix?: string): string; static getPublicKeyFromPrivateKey(privateKey: Uint8Array): Promise>; static isAddressValid(address: string, prefix?: string): boolean; static generateMnemonic(): string; }