import { BaseAccount } from "../../auth/v1beta1/auth"; import { Coin } from "../../base/v1beta1/coin"; import * as _m0 from "protobufjs/minimal"; import { Long, DeepPartial } from "@osmonauts/helpers"; /** * BaseVestingAccount implements the VestingAccount interface. It contains all * the necessary fields needed for any vesting account implementation. */ export interface BaseVestingAccount { base_account: BaseAccount; original_vesting: Coin[]; delegated_free: Coin[]; delegated_vesting: Coin[]; end_time: Long; } /** * ContinuousVestingAccount implements the VestingAccount interface. It * continuously vests by unlocking coins linearly with respect to time. */ export interface ContinuousVestingAccount { base_vesting_account: BaseVestingAccount; start_time: Long; } /** * DelayedVestingAccount implements the VestingAccount interface. It vests all * coins after a specific time, but non prior. In other words, it keeps them * locked until a specified time. */ export interface DelayedVestingAccount { base_vesting_account: BaseVestingAccount; } /** Period defines a length of time and amount of coins that will vest. */ export interface Period { length: Long; amount: Coin[]; } /** * PeriodicVestingAccount implements the VestingAccount interface. It * periodically vests by unlocking coins during each specified period. */ export interface PeriodicVestingAccount { base_vesting_account: BaseVestingAccount; start_time: Long; vesting_periods: Period[]; } /** * PermanentLockedAccount implements the VestingAccount interface. It does * not ever release coins, locking them indefinitely. Coins in this account can * still be used for delegating and for governance votes even while locked. * * Since: cosmos-sdk 0.43 */ export interface PermanentLockedAccount { base_vesting_account: BaseVestingAccount; } export declare const BaseVestingAccount: { encode(message: BaseVestingAccount, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): BaseVestingAccount; fromJSON(object: any): BaseVestingAccount; toJSON(message: BaseVestingAccount): unknown; fromPartial(object: DeepPartial): BaseVestingAccount; }; export declare const ContinuousVestingAccount: { encode(message: ContinuousVestingAccount, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ContinuousVestingAccount; fromJSON(object: any): ContinuousVestingAccount; toJSON(message: ContinuousVestingAccount): unknown; fromPartial(object: DeepPartial): ContinuousVestingAccount; }; export declare const DelayedVestingAccount: { encode(message: DelayedVestingAccount, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): DelayedVestingAccount; fromJSON(object: any): DelayedVestingAccount; toJSON(message: DelayedVestingAccount): unknown; fromPartial(object: DeepPartial): DelayedVestingAccount; }; export declare const Period: { encode(message: Period, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Period; fromJSON(object: any): Period; toJSON(message: Period): unknown; fromPartial(object: DeepPartial): Period; }; export declare const PeriodicVestingAccount: { encode(message: PeriodicVestingAccount, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): PeriodicVestingAccount; fromJSON(object: any): PeriodicVestingAccount; toJSON(message: PeriodicVestingAccount): unknown; fromPartial(object: DeepPartial): PeriodicVestingAccount; }; export declare const PermanentLockedAccount: { encode(message: PermanentLockedAccount, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): PermanentLockedAccount; fromJSON(object: any): PermanentLockedAccount; toJSON(message: PermanentLockedAccount): unknown; fromPartial(object: DeepPartial): PermanentLockedAccount; };