import { GeneratedType, Registry } from "@cosmjs/proto-signing"; import { MsgFundFairburnPool, MsgUpdateParams } from "./tx"; export declare const registry: ReadonlyArray<[string, GeneratedType]>; export declare const load: (protoRegistry: Registry) => void; export declare const MessageComposer: { encoded: { fundFairburnPool(value: MsgFundFairburnPool): { typeUrl: string; value: Uint8Array; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { fundFairburnPool(value: MsgFundFairburnPool): { typeUrl: string; value: MsgFundFairburnPool; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; }; toJSON: { fundFairburnPool(value: MsgFundFairburnPool): { typeUrl: string; value: { sender: string; amount: { denom: string; amount: string; }[]; }; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: { authority: string; params: { distributionProportions: { developerRewards: string; communityPool: string; relayerIncentives: string; }; weightedDeveloperRewardsReceivers: { address: string; weight: string; }[]; supplementAmount: { denom: string; amount: string; }[]; }; }; }; }; fromJSON: { fundFairburnPool(value: any): { typeUrl: string; value: MsgFundFairburnPool; }; updateParams(value: any): { typeUrl: string; value: MsgUpdateParams; }; }; fromPartial: { fundFairburnPool(value: MsgFundFairburnPool): { typeUrl: string; value: MsgFundFairburnPool; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; }; };