import { BinaryReader, BinaryWriter } from '../../../binary.js'; import { type JsonSafe } from '../../../json-safe.js'; /** PubKey defines a secp256r1 ECDSA public key. */ export interface PubKey { /** * Point on secp256r1 curve in a compressed representation as specified in section * 4.3.6 of ANSI X9.62: https://webstore.ansi.org/standards/ascx9/ansix9621998 */ key: Uint8Array; } export interface PubKeyProtoMsg { typeUrl: '/cosmos.crypto.secp256r1.PubKey'; value: Uint8Array; } /** PubKey defines a secp256r1 ECDSA public key. */ export interface PubKeySDKType { key: Uint8Array; } /** PrivKey defines a secp256r1 ECDSA private key. */ export interface PrivKey { /** secret number serialized using big-endian encoding */ secret: Uint8Array; } export interface PrivKeyProtoMsg { typeUrl: '/cosmos.crypto.secp256r1.PrivKey'; value: Uint8Array; } /** PrivKey defines a secp256r1 ECDSA private key. */ export interface PrivKeySDKType { secret: Uint8Array; } export declare const PubKey: { typeUrl: "/cosmos.crypto.secp256r1.PubKey"; encode(message: PubKey, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): PubKey; fromJSON(object: any): PubKey; toJSON(message: PubKey): JsonSafe; fromPartial(object: Partial): PubKey; fromProtoMsg(message: PubKeyProtoMsg): PubKey; toProto(message: PubKey): Uint8Array; toProtoMsg(message: PubKey): PubKeyProtoMsg; }; export declare const PrivKey: { typeUrl: "/cosmos.crypto.secp256r1.PrivKey"; encode(message: PrivKey, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): PrivKey; fromJSON(object: any): PrivKey; toJSON(message: PrivKey): JsonSafe; fromPartial(object: Partial): PrivKey; fromProtoMsg(message: PrivKeyProtoMsg): PrivKey; toProto(message: PrivKey): Uint8Array; toProtoMsg(message: PrivKey): PrivKeyProtoMsg; }; //# sourceMappingURL=keys.d.ts.map