import { IHDPlugin, IKeyPair } from "../types"; export interface IEosPlugin extends IHDPlugin { checkPrivateKey(privateKey: string): string; privateKeyToLegacyString(privateKey: string): string; getKeyPairFromPrivateKey(privateKey: string): IKeyPair | null; } export declare const plugin: IEosPlugin;