import { Rpc } from "../../helpers"; import { MsgBid, MsgBidResponse } from "./msgs"; /** Msg defines the state transitions possible within auction */ export interface Msg { bid(request: MsgBid): Promise; } export declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: Rpc); bid(request: MsgBid): Promise; }