import { TxRpc } from "../../../types"; import { MsgVerifyInvariant, MsgVerifyInvariantResponse, MsgUpdateParams, MsgUpdateParamsResponse } from "./tx"; /** Msg defines the bank Msg service. */ export interface Msg { /** VerifyInvariant defines a method to verify a particular invariant. */ verifyInvariant(request: MsgVerifyInvariant): Promise; /** * UpdateParams defines a governance operation for updating the x/crisis module * parameters. The authority is defined in the keeper. * * Since: cosmos-sdk 0.47 */ updateParams(request: MsgUpdateParams): Promise; } export declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: TxRpc); verifyInvariant: (request: MsgVerifyInvariant) => Promise; updateParams: (request: MsgUpdateParams) => Promise; } export declare const createClientImpl: (rpc: TxRpc) => MsgClientImpl;