import { DefaultKeys, KeyPairOptions, Secp256k1ExtendedKeyPair } from '@bitgo-beta/sdk-core'; /** * Osmosis keys and address management. */ export declare class KeyPair extends Secp256k1ExtendedKeyPair { /** * Public constructor. By default, creates a key pair with a random master seed. * @param { KeyPairOptions } source Either a master seed, a private key (extended or raw), or a public key * (extended, compressed, or uncompressed) */ constructor(source?: KeyPairOptions); /** * Osmosis default keys format: raw private and compressed public key * @returns { DefaultKeys } The keys in the protocol default key format */ getKeys(): DefaultKeys; /** @inheritdoc */ getAddress(): string; } //# sourceMappingURL=keyPair.d.ts.map