import { type Rpc } from '../../helpers.js'; import { MsgUpdateParams, MsgUpdateParamsResponse } from './tx.js'; /** Msg defines the Msg service. */ export interface Msg { /** * UpdateParams defines a governance operation for updating the x/async-icq module * parameters. The authority is hard-coded to the x/gov module account. * * Since: cosmos-sdk 0.47 */ updateParams(request: MsgUpdateParams): Promise; } export declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: Rpc); updateParams(request: MsgUpdateParams): Promise; } //# sourceMappingURL=tx.rpc.msg.d.ts.map