import { EthereumNewKeysOptions } from './generalModels'; import { EthereumPublicKey } from './cryptoModels'; export type EthereumAccountResources = {}; export type EthereumCreateAccountOptions = { publicKey?: EthereumPublicKey; newKeysOptions?: EthereumNewKeysOptions; multisigOptions?: PluginMultisigOptions; }; /** Type of account to create */ export declare enum EthereumNewAccountType { /** Native account for chain type (Ethereum, etc.) */ Native = "Native" }