import type { TxRpc } from '@agoric/cosmic-proto/codegen/types.js'; import { MsgIncreaseCounter, MsgIncreaseCountResponse } from '@agoric/cosmic-proto/codegen/cosmos/counter/v1/tx.js'; /** Msg defines the counter Msg service. */ export interface Msg { /** IncreaseCount increments the counter by the specified amount. */ increaseCount(request: MsgIncreaseCounter): Promise; } export declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: TxRpc); increaseCount(request: MsgIncreaseCounter): Promise; } export declare const createClientImpl: (rpc: TxRpc) => MsgClientImpl; //# sourceMappingURL=tx.rpc.msg.d.ts.map