export interface ImportWalletParams { mnemonic?: string; privateKey?: string; } export interface ImportWalletResult { address: string; privateKey: string; source: 'mnemonic' | 'privateKey'; } export declare function importWallet(params: ImportWalletParams): Promise;