import { MsgUnjail, MsgUpdateParams } from "./tx"; /** * 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. * @name unjail * @package cosmos.slashing.v1beta1 * @see proto service: cosmos.slashing.v1beta1.Unjail */ export declare const unjail: (client: import("@interchainjs/cosmos").ISigningClient, signerAddress: string, message: MsgUnjail | MsgUnjail[], fee: import("../../..").StdFee | "auto", memo: string) => Promise; /** * UpdateParams defines a governance operation for updating the x/slashing module * parameters. The authority defaults to the x/gov module account. * @name updateParams * @package cosmos.slashing.v1beta1 * @see proto service: cosmos.slashing.v1beta1.UpdateParams */ export declare const updateParams: (client: import("@interchainjs/cosmos").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../..").StdFee | "auto", memo: string) => Promise;