import { Wallet } from "ethers"; import type { WalletSummary } from "./types.js"; export declare function getWalletSummary(): WalletSummary | null; export type CreateEvmWalletResult = { address: string; mnemonic?: string; }; export declare function createEvmWallet(password: string, label?: string): CreateEvmWalletResult; export type ImportEvmPrivateKeyResult = { address: string; }; export declare function importEvmPrivateKey(password: string, privateKey: string, label?: string): ImportEvmPrivateKeyResult; export type ImportEvmMnemonicResult = { address: string; }; export declare function importEvmMnemonic(password: string, mnemonic: string, label?: string): ImportEvmMnemonicResult; export declare function getEvmWallet(): Wallet; export declare function unlockAndGetEvmWallet(password: string): Wallet; //# sourceMappingURL=evm.d.ts.map