declare class Wallet {
    use: string;
    wallets: any;
    constructor(name: string, config?: object);
}
export default Wallet;
