import { GeneratedType, Registry } from "@cosmjs/proto-signing"; import { MsgDeposit, MsgWithdrawAndMint } from "./tx"; export declare const registry: ReadonlyArray<[string, GeneratedType]>; export declare const load: (protoRegistry: Registry) => void; export declare const MessageComposer: { encoded: { deposit(value: MsgDeposit): { typeUrl: string; value: Uint8Array; }; withdrawAndMint(value: MsgWithdrawAndMint): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { deposit(value: MsgDeposit): { typeUrl: string; value: MsgDeposit; }; withdrawAndMint(value: MsgWithdrawAndMint): { typeUrl: string; value: MsgWithdrawAndMint; }; }; fromPartial: { deposit(value: MsgDeposit): { typeUrl: string; value: MsgDeposit; }; withdrawAndMint(value: MsgWithdrawAndMint): { typeUrl: string; value: MsgWithdrawAndMint; }; }; };