import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "cosmos.evidence.v1beta1"; /** * Equivocation implements the Evidence interface and defines evidence of double * signing misbehavior. */ export interface Equivocation { /** height is the equivocation height. */ height: Long; /** time is the equivocation time. */ time: Date | undefined; /** power is the equivocation validator power. */ power: Long; /** consensus_address is the equivocation validator consensus address. */ consensusAddress: string; } export declare const Equivocation: { encode(message: Equivocation, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Equivocation; fromJSON(object: any): Equivocation; toJSON(message: Equivocation): unknown; create(base?: DeepPartial): Equivocation; fromPartial(object: DeepPartial): Equivocation; }; 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 {};