/// import { IKeyPair } from "../interfaces"; import { Network } from "../interfaces/networks"; export declare class Keys { static fromPassphrase(passphrase: string, compressed?: boolean): IKeyPair; static fromPrivateKey(privateKey: Buffer | string, compressed?: boolean): IKeyPair; static fromWIF(wifKey: string, network?: Network): IKeyPair; } //# sourceMappingURL=keys.d.ts.map