import { TelescopeGeneratedType } from "../../../types"; import { MsgBid, MsgUpdateParams } from "./tx"; export declare const registry: ReadonlyArray<[string, TelescopeGeneratedType]>; export declare const MessageComposer: { encoded: { bid(value: MsgBid): { typeUrl: string; value: Uint8Array; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { bid(value: MsgBid): { typeUrl: string; value: MsgBid; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; }; fromPartial: { bid(value: MsgBid): { typeUrl: string; value: MsgBid; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; }; };