import { Rpc } from "@osmonauts/helpers"; import { MsgCreateGauge, MsgCreateGaugeResponse, MsgAddToGauge, MsgAddToGaugeResponse } from "./tx"; /** Msg defines the RPC service */ export interface Msg { createGauge(request: MsgCreateGauge): Promise; addToGauge(request: MsgAddToGauge): Promise; } export declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: Rpc); createGauge(request: MsgCreateGauge): Promise; addToGauge(request: MsgAddToGauge): Promise; }