import { MsgCreateVestingAccount, MsgCreatePermanentLockedAccount, MsgCreatePeriodicVestingAccount } from "./tx"; /** * CreateVestingAccount defines a method that enables creating a vesting * account. * @name createVestingAccount * @package cosmos.vesting.v1beta1 * @see proto service: cosmos.vesting.v1beta1.CreateVestingAccount */ export declare const createVestingAccount: (client: import("@interchainjs/cosmos").ISigningClient, signerAddress: string, message: MsgCreateVestingAccount | MsgCreateVestingAccount[], fee: import("../../..").StdFee | "auto", memo: string) => Promise; /** * CreatePermanentLockedAccount defines a method that enables creating a permanent * locked account. * @name createPermanentLockedAccount * @package cosmos.vesting.v1beta1 * @see proto service: cosmos.vesting.v1beta1.CreatePermanentLockedAccount */ export declare const createPermanentLockedAccount: (client: import("@interchainjs/cosmos").ISigningClient, signerAddress: string, message: MsgCreatePermanentLockedAccount | MsgCreatePermanentLockedAccount[], fee: import("../../..").StdFee | "auto", memo: string) => Promise; /** * CreatePeriodicVestingAccount defines a method that enables creating a * periodic vesting account. * @name createPeriodicVestingAccount * @package cosmos.vesting.v1beta1 * @see proto service: cosmos.vesting.v1beta1.CreatePeriodicVestingAccount */ export declare const createPeriodicVestingAccount: (client: import("@interchainjs/cosmos").ISigningClient, signerAddress: string, message: MsgCreatePeriodicVestingAccount | MsgCreatePeriodicVestingAccount[], fee: import("../../..").StdFee | "auto", memo: string) => Promise;