import { type Rpc } from '../../../../helpers.js'; import { MsgLock, MsgLockResponse, MsgUnlock, MsgUnlockResponse, MsgSetPausedState, MsgSetPausedStateResponse } from './tx.js'; export interface Msg { lock(request: MsgLock): Promise; unlock(request: MsgUnlock): Promise; setPausedState(request: MsgSetPausedState): Promise; } export declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: Rpc); lock(request: MsgLock): Promise; unlock(request: MsgUnlock): Promise; setPausedState(request: MsgSetPausedState): Promise; } //# sourceMappingURL=tx.rpc.msg.d.ts.map