import { KeyPair } from "../../domain"; import { Secp256k1PrivateKey } from "./Secp256k1PrivateKey"; import { Secp256k1PublicKey } from "./Secp256k1PublicKey"; /** * @ignore */ export declare class Secp256k1KeyPair extends KeyPair { privateKey: Secp256k1PrivateKey; publicKey: Secp256k1PublicKey; constructor(privateKey: Secp256k1PrivateKey, publicKey: Secp256k1PublicKey); static generateKeyPair(): Secp256k1KeyPair; }