import { TelescopeGeneratedType } from "../../../types"; import { MsgCreateVestingAccount, MsgCreatePermanentLockedAccount, MsgCreatePeriodicVestingAccount } from "./tx"; export declare const registry: ReadonlyArray<[string, TelescopeGeneratedType]>; export declare const MessageComposer: { encoded: { createVestingAccount(value: MsgCreateVestingAccount): { typeUrl: string; value: Uint8Array; }; createPermanentLockedAccount(value: MsgCreatePermanentLockedAccount): { typeUrl: string; value: Uint8Array; }; createPeriodicVestingAccount(value: MsgCreatePeriodicVestingAccount): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { createVestingAccount(value: MsgCreateVestingAccount): { typeUrl: string; value: MsgCreateVestingAccount; }; createPermanentLockedAccount(value: MsgCreatePermanentLockedAccount): { typeUrl: string; value: MsgCreatePermanentLockedAccount; }; createPeriodicVestingAccount(value: MsgCreatePeriodicVestingAccount): { typeUrl: string; value: MsgCreatePeriodicVestingAccount; }; }; fromPartial: { createVestingAccount(value: MsgCreateVestingAccount): { typeUrl: string; value: MsgCreateVestingAccount; }; createPermanentLockedAccount(value: MsgCreatePermanentLockedAccount): { typeUrl: string; value: MsgCreatePermanentLockedAccount; }; createPeriodicVestingAccount(value: MsgCreatePeriodicVestingAccount): { typeUrl: string; value: MsgCreatePeriodicVestingAccount; }; }; };