import { BaseHdWallet } from "./baseHd";
import { WebHdWallet } from "./webHd";
interface HdWalletCollection {
    [crypto: string]: (mnemonicOrSeed: string, ...otherOptions: any[]) => BaseHdWallet | WebHdWallet;
}
export declare const HdWallet: HdWalletCollection;
export {};
