import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "ethermint.crypto.v1.ethsecp256k1"; /** * PubKey defines a type alias for an ecdsa.PublicKey that implements * Tendermint's PubKey interface. It represents the 33-byte compressed public * key format. */ export interface PubKey { /** key is the public key in byte form */ key: Uint8Array; } /** * PrivKey defines a type alias for an ecdsa.PrivateKey that implements * Tendermint's PrivateKey interface. */ export interface PrivKey { /** key is the private key in byte form */ key: Uint8Array; } export declare const 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; create(base?: DeepPartial): PubKey; fromPartial(object: DeepPartial): PubKey; }; export declare const 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; create(base?: DeepPartial): PrivKey; fromPartial(object: DeepPartial): PrivKey; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Long ? string | number | Long : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {};