import { Rpc } from "../../../helpers"; import { MsgClaimClaimable, MsgClaimClaimableResponse, MsgUpdateParams, MsgUpdateParamsResponse } from "./claim"; /** Msg defines the Msg service. */ export interface Msg { claimClaimable(request: MsgClaimClaimable): Promise; updateParams(request: MsgUpdateParams): Promise; } export declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: Rpc); claimClaimable(request: MsgClaimClaimable): Promise; updateParams(request: MsgUpdateParams): Promise; }