import { DefaultKeys, Ed25519KeyPair, KeyPairOptions } from '@bitgo/sdk-core'; export declare class KeyPair extends Ed25519KeyPair { /** * Public constructor. By default, creates a key pair with a random master seed. * * @param { KeyPairOptions } source Either a master seed, a private key, or a public key */ constructor(source?: KeyPairOptions); /** @inheritdoc */ getKeys(): DefaultKeys; /** @inheritdoc */ recordKeysFromPrivateKeyInProtocolFormat(prv: string): DefaultKeys; /** @inheritdoc */ recordKeysFromPublicKeyInProtocolFormat(pub: string): DefaultKeys; /** @inheritdoc */ getAddress(): string; } //# sourceMappingURL=keyPair.d.ts.map