import { Rpc } from "../../../helpers"; import { MsgCreateVestingAccount, MsgCreateVestingAccountResponse } from "./tx"; /** Msg defines the alloc Msg service. */ export interface Msg { /** * CreateVestingAccount defines a method that enables creating a vesting * account. */ createVestingAccount(request: MsgCreateVestingAccount): Promise; } export declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: Rpc); createVestingAccount(request: MsgCreateVestingAccount): Promise; }