import { Keypair } from "@solana/web3.js"; export declare function GenerateNewMnemonic(): string; export declare const mnemonicToSeed: (mnemonic: string) => string; export declare function EntropyToMnemonic(entropy: string): string; export declare function ValidateMnemonic(mnemonic: string): true; export declare function GenerateSeed(_mnemonic?: string): Uint8Array; export declare function EVMDeriveChildPrivateKey(seed: string, index: number, derivationPath: string): { privateKey: string; publicKey: string; }; export declare function SVMDeriveChildPrivateKey(seed: string, index: number, derivationPath: string): Keypair;