import { IKeyPair, IHDPlugin } from "../types"; export interface IEthereumPlugin extends IHDPlugin { checkPrivateKey(privateKey: string): string; decryptKeystore(password: string, encryptData: any): Promise; getKeyPairFromPrivateKey(privateKey: string): IKeyPair | null; } export declare const plugin: IEthereumPlugin;