import { Rpc } from "../../../helpers"; import { MsgUnjail, MsgUnjailResponse } from "./tx"; /** 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; } export declare const createClientImpl: (rpc: Rpc) => MsgClientImpl;