import { Rpc } from "../../../helpers"; import { MsgUpdateParams, MsgUpdateParamsResponse } from "./tx"; /** Msg defines the mint Msg service. */ export interface Msg { /** UpdateParams updates the mint module's parameters. */ updateParams(request: MsgUpdateParams): Promise; } export declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: Rpc); updateParams(request: MsgUpdateParams): Promise; }