import { Rpc } from "@osmonauts/helpers"; import { MsgGrantAllowance, MsgGrantAllowanceResponse, MsgRevokeAllowance, MsgRevokeAllowanceResponse } from "./tx"; /** Msg defines the RPC service */ export interface Msg { grantAllowance(request: MsgGrantAllowance): Promise; revokeAllowance(request: MsgRevokeAllowance): Promise; } export declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: Rpc); grantAllowance(request: MsgGrantAllowance): Promise; revokeAllowance(request: MsgRevokeAllowance): Promise; }