import { GeneratedType, Registry } from "@cosmjs/proto-signing"; import { MsgSetWithdrawAddress, MsgWithdrawDelegatorReward, MsgWithdrawValidatorCommission, MsgFundCommunityPool } from "./tx"; export declare const registry: ReadonlyArray<[string, GeneratedType]>; export declare const load: (protoRegistry: Registry) => void; export declare const MessageComposer: { encoded: { setWithdrawAddress(value: MsgSetWithdrawAddress): { typeUrl: string; value: Uint8Array; }; withdrawDelegatorReward(value: MsgWithdrawDelegatorReward): { typeUrl: string; value: Uint8Array; }; withdrawValidatorCommission(value: MsgWithdrawValidatorCommission): { typeUrl: string; value: Uint8Array; }; fundCommunityPool(value: MsgFundCommunityPool): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { setWithdrawAddress(value: MsgSetWithdrawAddress): { typeUrl: string; value: MsgSetWithdrawAddress; }; withdrawDelegatorReward(value: MsgWithdrawDelegatorReward): { typeUrl: string; value: MsgWithdrawDelegatorReward; }; withdrawValidatorCommission(value: MsgWithdrawValidatorCommission): { typeUrl: string; value: MsgWithdrawValidatorCommission; }; fundCommunityPool(value: MsgFundCommunityPool): { typeUrl: string; value: MsgFundCommunityPool; }; }; toJSON: { setWithdrawAddress(value: MsgSetWithdrawAddress): { typeUrl: string; value: { delegatorAddress: string; withdrawAddress: string; }; }; withdrawDelegatorReward(value: MsgWithdrawDelegatorReward): { typeUrl: string; value: { delegatorAddress: string; validatorAddress: string; }; }; withdrawValidatorCommission(value: MsgWithdrawValidatorCommission): { typeUrl: string; value: { validatorAddress: string; }; }; fundCommunityPool(value: MsgFundCommunityPool): { typeUrl: string; value: { amount: { denom: string; amount: string; }[]; depositor: string; }; }; }; fromJSON: { setWithdrawAddress(value: any): { typeUrl: string; value: MsgSetWithdrawAddress; }; withdrawDelegatorReward(value: any): { typeUrl: string; value: MsgWithdrawDelegatorReward; }; withdrawValidatorCommission(value: any): { typeUrl: string; value: MsgWithdrawValidatorCommission; }; fundCommunityPool(value: any): { typeUrl: string; value: MsgFundCommunityPool; }; }; fromPartial: { setWithdrawAddress(value: MsgSetWithdrawAddress): { typeUrl: string; value: MsgSetWithdrawAddress; }; withdrawDelegatorReward(value: MsgWithdrawDelegatorReward): { typeUrl: string; value: MsgWithdrawDelegatorReward; }; withdrawValidatorCommission(value: MsgWithdrawValidatorCommission): { typeUrl: string; value: MsgWithdrawValidatorCommission; }; fundCommunityPool(value: MsgFundCommunityPool): { typeUrl: string; value: MsgFundCommunityPool; }; }; };