import Long from 'long'; import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "cosmos.slashing.v1beta1"; /** MsgUnjail defines the Msg/Unjail request type */ export interface MsgUnjail { $type: 'cosmos.slashing.v1beta1.MsgUnjail'; validatorAddr: string; } /** MsgUnjailResponse defines the Msg/Unjail response type */ export interface MsgUnjailResponse { $type: 'cosmos.slashing.v1beta1.MsgUnjailResponse'; } export declare const MsgUnjail: { $type: "cosmos.slashing.v1beta1.MsgUnjail"; encode(message: MsgUnjail, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): MsgUnjail; fromJSON(object: any): MsgUnjail; toJSON(message: MsgUnjail): unknown; fromPartial]: never; }>(object: I): MsgUnjail; }; export declare const MsgUnjailResponse: { $type: "cosmos.slashing.v1beta1.MsgUnjailResponse"; encode(_: MsgUnjailResponse, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): MsgUnjailResponse; fromJSON(_: any): MsgUnjailResponse; toJSON(_: MsgUnjailResponse): unknown; fromPartial]: never; }>(_: I): MsgUnjailResponse; }; /** Msg defines the slashing Msg service. */ export interface Msg { /** * Unjail defines a method for unjailing a jailed validator, thus returning * them into the bonded validator set, so they can begin receiving provisions * and rewards again. */ Unjail(request: MsgUnjail): Promise; } export declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: Rpc); Unjail(request: MsgUnjail): Promise; } interface Rpc { request(service: string, method: string, data: Uint8Array): Promise; } 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 {};