import Long from 'long'; import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "cosmos.crypto.secp256r1"; /** Since: cosmos-sdk 0.43 */ /** PubKey defines a secp256r1 ECDSA public key. */ export interface PubKey { $type: 'cosmos.crypto.secp256r1.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; } /** PrivKey defines a secp256r1 ECDSA private key. */ export interface PrivKey { $type: 'cosmos.crypto.secp256r1.PrivKey'; /** secret number serialized using big-endian encoding */ secret: Uint8Array; } export declare const PubKey: { $type: "cosmos.crypto.secp256r1.PubKey"; encode(message: PubKey, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): PubKey; fromJSON(object: any): PubKey; toJSON(message: PubKey): unknown; fromPartial]: never; }>(object: I): PubKey; }; export declare const PrivKey: { $type: "cosmos.crypto.secp256r1.PrivKey"; encode(message: PrivKey, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): PrivKey; fromJSON(object: any): PrivKey; toJSON(message: PrivKey): unknown; fromPartial]: never; }>(object: I): PrivKey; }; declare type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export declare type DeepPartial = T extends Builtin ? T : T extends Long ? string | number | Long : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in Exclude]?: DeepPartial; } : Partial; declare type KeysOfUnion = T extends T ? keyof T : never; export declare type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & { [K in Exclude | '$type'>]: never; }; export {};