import { type WalletSummary, type CreateEvmWalletResult, type ImportEvmMnemonicResult, type ImportEvmPrivateKeyResult } from "../vault/index.js"; import type { HttpClient } from "../lib/http.js"; import type { WalletBindResponse } from "./types.js"; export declare function getLocalWalletSummary(): WalletSummary | null; export declare function bindLocalEvmWallet(http: HttpClient, chainId: number, password: string): Promise; export declare function localVaultExists(): boolean; export declare function createLocalWallet(password: string, label?: string): CreateEvmWalletResult; export declare function importLocalPrivateKey(password: string, privateKey: string, label?: string): ImportEvmPrivateKeyResult; export declare function importLocalMnemonic(password: string, mnemonic: string, label?: string): ImportEvmMnemonicResult; //# sourceMappingURL=local.d.ts.map