import { PrivKey, PubKey } from './internal.js'; /** * Aldea Key Pair * * Convinience wrapper around a PrivKey and PubKey pair. */ export declare class KeyPair { privKey: PrivKey; pubKey: PubKey; constructor(privKey: PrivKey, pubKey: PubKey); /** * Generates and returns a new random KeyPair. */ static fromRandom(): KeyPair; /** * Returns a KeyPair from the given PrivKey. */ static fromPrivKey(privKey: PrivKey): KeyPair; } //# sourceMappingURL=keypair.d.ts.map