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