import { Rpc } from "../../../helpers"; import { MsgCreateVestingAccount, MsgCreateVestingAccountResponse, MsgCreatePermanentLockedAccount, MsgCreatePermanentLockedAccountResponse, MsgCreatePeriodicVestingAccount, MsgCreatePeriodicVestingAccountResponse } from "./tx"; /** Msg defines the bank Msg service. */ export interface Msg { /** * CreateVestingAccount defines a method that enables creating a vesting * account. */ createVestingAccount(request: MsgCreateVestingAccount): Promise; /** * CreatePermanentLockedAccount defines a method that enables creating a permanent * locked account. * * Since: cosmos-sdk 0.46 */ createPermanentLockedAccount(request: MsgCreatePermanentLockedAccount): Promise; /** * CreatePeriodicVestingAccount defines a method that enables creating a * periodic vesting account. * * Since: cosmos-sdk 0.46 */ createPeriodicVestingAccount(request: MsgCreatePeriodicVestingAccount): Promise; } export declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: Rpc); createVestingAccount: (request: MsgCreateVestingAccount) => Promise; createPermanentLockedAccount: (request: MsgCreatePermanentLockedAccount) => Promise; createPeriodicVestingAccount: (request: MsgCreatePeriodicVestingAccount) => Promise; }