import { PageRequest, type PageRequestSDKType, PageResponse, type PageResponseSDKType } from '../../base/query/v1beta1/pagination.js'; import { Params, type ParamsSDKType, ValidatorOutstandingRewards, type ValidatorOutstandingRewardsSDKType, ValidatorAccumulatedCommission, type ValidatorAccumulatedCommissionSDKType, ValidatorSlashEvent, type ValidatorSlashEventSDKType, DelegationDelegatorReward, type DelegationDelegatorRewardSDKType } from './distribution.js'; import { DecCoin, type DecCoinSDKType } from '../../base/v1beta1/coin.js'; import { BinaryReader, BinaryWriter } from '../../../binary.js'; import { type JsonSafe } from '../../../json-safe.js'; /** QueryParamsRequest is the request type for the Query/Params RPC method. */ export interface QueryParamsRequest { } export interface QueryParamsRequestProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.QueryParamsRequest'; value: Uint8Array; } /** QueryParamsRequest is the request type for the Query/Params RPC method. */ export interface QueryParamsRequestSDKType { } /** QueryParamsResponse is the response type for the Query/Params RPC method. */ export interface QueryParamsResponse { /** params defines the parameters of the module. */ params: Params; } export interface QueryParamsResponseProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.QueryParamsResponse'; value: Uint8Array; } /** QueryParamsResponse is the response type for the Query/Params RPC method. */ export interface QueryParamsResponseSDKType { params: ParamsSDKType; } /** QueryValidatorDistributionInfoRequest is the request type for the Query/ValidatorDistributionInfo RPC method. */ export interface QueryValidatorDistributionInfoRequest { /** validator_address defines the validator address to query for. */ validatorAddress: string; } export interface QueryValidatorDistributionInfoRequestProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.QueryValidatorDistributionInfoRequest'; value: Uint8Array; } /** QueryValidatorDistributionInfoRequest is the request type for the Query/ValidatorDistributionInfo RPC method. */ export interface QueryValidatorDistributionInfoRequestSDKType { validator_address: string; } /** QueryValidatorDistributionInfoResponse is the response type for the Query/ValidatorDistributionInfo RPC method. */ export interface QueryValidatorDistributionInfoResponse { /** operator_address defines the validator operator address. */ operatorAddress: string; /** self_bond_rewards defines the self delegations rewards. */ selfBondRewards: DecCoin[]; /** commission defines the commission the validator received. */ commission: DecCoin[]; } export interface QueryValidatorDistributionInfoResponseProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.QueryValidatorDistributionInfoResponse'; value: Uint8Array; } /** QueryValidatorDistributionInfoResponse is the response type for the Query/ValidatorDistributionInfo RPC method. */ export interface QueryValidatorDistributionInfoResponseSDKType { operator_address: string; self_bond_rewards: DecCoinSDKType[]; commission: DecCoinSDKType[]; } /** * QueryValidatorOutstandingRewardsRequest is the request type for the * Query/ValidatorOutstandingRewards RPC method. */ export interface QueryValidatorOutstandingRewardsRequest { /** validator_address defines the validator address to query for. */ validatorAddress: string; } export interface QueryValidatorOutstandingRewardsRequestProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsRequest'; value: Uint8Array; } /** * QueryValidatorOutstandingRewardsRequest is the request type for the * Query/ValidatorOutstandingRewards RPC method. */ export interface QueryValidatorOutstandingRewardsRequestSDKType { validator_address: string; } /** * QueryValidatorOutstandingRewardsResponse is the response type for the * Query/ValidatorOutstandingRewards RPC method. */ export interface QueryValidatorOutstandingRewardsResponse { rewards: ValidatorOutstandingRewards; } export interface QueryValidatorOutstandingRewardsResponseProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse'; value: Uint8Array; } /** * QueryValidatorOutstandingRewardsResponse is the response type for the * Query/ValidatorOutstandingRewards RPC method. */ export interface QueryValidatorOutstandingRewardsResponseSDKType { rewards: ValidatorOutstandingRewardsSDKType; } /** * QueryValidatorCommissionRequest is the request type for the * Query/ValidatorCommission RPC method */ export interface QueryValidatorCommissionRequest { /** validator_address defines the validator address to query for. */ validatorAddress: string; } export interface QueryValidatorCommissionRequestProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.QueryValidatorCommissionRequest'; value: Uint8Array; } /** * QueryValidatorCommissionRequest is the request type for the * Query/ValidatorCommission RPC method */ export interface QueryValidatorCommissionRequestSDKType { validator_address: string; } /** * QueryValidatorCommissionResponse is the response type for the * Query/ValidatorCommission RPC method */ export interface QueryValidatorCommissionResponse { /** commission defines the commission the validator received. */ commission: ValidatorAccumulatedCommission; } export interface QueryValidatorCommissionResponseProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.QueryValidatorCommissionResponse'; value: Uint8Array; } /** * QueryValidatorCommissionResponse is the response type for the * Query/ValidatorCommission RPC method */ export interface QueryValidatorCommissionResponseSDKType { commission: ValidatorAccumulatedCommissionSDKType; } /** * QueryValidatorSlashesRequest is the request type for the * Query/ValidatorSlashes RPC method */ export interface QueryValidatorSlashesRequest { /** validator_address defines the validator address to query for. */ validatorAddress: string; /** starting_height defines the optional starting height to query the slashes. */ startingHeight: bigint; /** starting_height defines the optional ending height to query the slashes. */ endingHeight: bigint; /** pagination defines an optional pagination for the request. */ pagination?: PageRequest; } export interface QueryValidatorSlashesRequestProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.QueryValidatorSlashesRequest'; value: Uint8Array; } /** * QueryValidatorSlashesRequest is the request type for the * Query/ValidatorSlashes RPC method */ export interface QueryValidatorSlashesRequestSDKType { validator_address: string; starting_height: bigint; ending_height: bigint; pagination?: PageRequestSDKType; } /** * QueryValidatorSlashesResponse is the response type for the * Query/ValidatorSlashes RPC method. */ export interface QueryValidatorSlashesResponse { /** slashes defines the slashes the validator received. */ slashes: ValidatorSlashEvent[]; /** pagination defines the pagination in the response. */ pagination?: PageResponse; } export interface QueryValidatorSlashesResponseProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.QueryValidatorSlashesResponse'; value: Uint8Array; } /** * QueryValidatorSlashesResponse is the response type for the * Query/ValidatorSlashes RPC method. */ export interface QueryValidatorSlashesResponseSDKType { slashes: ValidatorSlashEventSDKType[]; pagination?: PageResponseSDKType; } /** * QueryDelegationRewardsRequest is the request type for the * Query/DelegationRewards RPC method. */ export interface QueryDelegationRewardsRequest { /** delegator_address defines the delegator address to query for. */ delegatorAddress: string; /** validator_address defines the validator address to query for. */ validatorAddress: string; } export interface QueryDelegationRewardsRequestProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.QueryDelegationRewardsRequest'; value: Uint8Array; } /** * QueryDelegationRewardsRequest is the request type for the * Query/DelegationRewards RPC method. */ export interface QueryDelegationRewardsRequestSDKType { delegator_address: string; validator_address: string; } /** * QueryDelegationRewardsResponse is the response type for the * Query/DelegationRewards RPC method. */ export interface QueryDelegationRewardsResponse { /** rewards defines the rewards accrued by a delegation. */ rewards: DecCoin[]; } export interface QueryDelegationRewardsResponseProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.QueryDelegationRewardsResponse'; value: Uint8Array; } /** * QueryDelegationRewardsResponse is the response type for the * Query/DelegationRewards RPC method. */ export interface QueryDelegationRewardsResponseSDKType { rewards: DecCoinSDKType[]; } /** * QueryDelegationTotalRewardsRequest is the request type for the * Query/DelegationTotalRewards RPC method. */ export interface QueryDelegationTotalRewardsRequest { /** delegator_address defines the delegator address to query for. */ delegatorAddress: string; } export interface QueryDelegationTotalRewardsRequestProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.QueryDelegationTotalRewardsRequest'; value: Uint8Array; } /** * QueryDelegationTotalRewardsRequest is the request type for the * Query/DelegationTotalRewards RPC method. */ export interface QueryDelegationTotalRewardsRequestSDKType { delegator_address: string; } /** * QueryDelegationTotalRewardsResponse is the response type for the * Query/DelegationTotalRewards RPC method. */ export interface QueryDelegationTotalRewardsResponse { /** rewards defines all the rewards accrued by a delegator. */ rewards: DelegationDelegatorReward[]; /** total defines the sum of all the rewards. */ total: DecCoin[]; } export interface QueryDelegationTotalRewardsResponseProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.QueryDelegationTotalRewardsResponse'; value: Uint8Array; } /** * QueryDelegationTotalRewardsResponse is the response type for the * Query/DelegationTotalRewards RPC method. */ export interface QueryDelegationTotalRewardsResponseSDKType { rewards: DelegationDelegatorRewardSDKType[]; total: DecCoinSDKType[]; } /** * QueryDelegatorValidatorsRequest is the request type for the * Query/DelegatorValidators RPC method. */ export interface QueryDelegatorValidatorsRequest { /** delegator_address defines the delegator address to query for. */ delegatorAddress: string; } export interface QueryDelegatorValidatorsRequestProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.QueryDelegatorValidatorsRequest'; value: Uint8Array; } /** * QueryDelegatorValidatorsRequest is the request type for the * Query/DelegatorValidators RPC method. */ export interface QueryDelegatorValidatorsRequestSDKType { delegator_address: string; } /** * QueryDelegatorValidatorsResponse is the response type for the * Query/DelegatorValidators RPC method. */ export interface QueryDelegatorValidatorsResponse { /** validators defines the validators a delegator is delegating for. */ validators: string[]; } export interface QueryDelegatorValidatorsResponseProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.QueryDelegatorValidatorsResponse'; value: Uint8Array; } /** * QueryDelegatorValidatorsResponse is the response type for the * Query/DelegatorValidators RPC method. */ export interface QueryDelegatorValidatorsResponseSDKType { validators: string[]; } /** * QueryDelegatorWithdrawAddressRequest is the request type for the * Query/DelegatorWithdrawAddress RPC method. */ export interface QueryDelegatorWithdrawAddressRequest { /** delegator_address defines the delegator address to query for. */ delegatorAddress: string; } export interface QueryDelegatorWithdrawAddressRequestProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressRequest'; value: Uint8Array; } /** * QueryDelegatorWithdrawAddressRequest is the request type for the * Query/DelegatorWithdrawAddress RPC method. */ export interface QueryDelegatorWithdrawAddressRequestSDKType { delegator_address: string; } /** * QueryDelegatorWithdrawAddressResponse is the response type for the * Query/DelegatorWithdrawAddress RPC method. */ export interface QueryDelegatorWithdrawAddressResponse { /** withdraw_address defines the delegator address to query for. */ withdrawAddress: string; } export interface QueryDelegatorWithdrawAddressResponseProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse'; value: Uint8Array; } /** * QueryDelegatorWithdrawAddressResponse is the response type for the * Query/DelegatorWithdrawAddress RPC method. */ export interface QueryDelegatorWithdrawAddressResponseSDKType { withdraw_address: string; } /** * QueryCommunityPoolRequest is the request type for the Query/CommunityPool RPC * method. */ export interface QueryCommunityPoolRequest { } export interface QueryCommunityPoolRequestProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.QueryCommunityPoolRequest'; value: Uint8Array; } /** * QueryCommunityPoolRequest is the request type for the Query/CommunityPool RPC * method. */ export interface QueryCommunityPoolRequestSDKType { } /** * QueryCommunityPoolResponse is the response type for the Query/CommunityPool * RPC method. */ export interface QueryCommunityPoolResponse { /** pool defines community pool's coins. */ pool: DecCoin[]; } export interface QueryCommunityPoolResponseProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.QueryCommunityPoolResponse'; value: Uint8Array; } /** * QueryCommunityPoolResponse is the response type for the Query/CommunityPool * RPC method. */ export interface QueryCommunityPoolResponseSDKType { pool: DecCoinSDKType[]; } export declare const QueryParamsRequest: { typeUrl: "/cosmos.distribution.v1beta1.QueryParamsRequest"; encode(_: QueryParamsRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsRequest; fromJSON(_: any): QueryParamsRequest; toJSON(_: QueryParamsRequest): JsonSafe; fromPartial(_: Partial): QueryParamsRequest; fromProtoMsg(message: QueryParamsRequestProtoMsg): QueryParamsRequest; toProto(message: QueryParamsRequest): Uint8Array; toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg; }; export declare const QueryParamsResponse: { typeUrl: "/cosmos.distribution.v1beta1.QueryParamsResponse"; encode(message: QueryParamsResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsResponse; fromJSON(object: any): QueryParamsResponse; toJSON(message: QueryParamsResponse): JsonSafe; fromPartial(object: Partial): QueryParamsResponse; fromProtoMsg(message: QueryParamsResponseProtoMsg): QueryParamsResponse; toProto(message: QueryParamsResponse): Uint8Array; toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg; }; export declare const QueryValidatorDistributionInfoRequest: { typeUrl: "/cosmos.distribution.v1beta1.QueryValidatorDistributionInfoRequest"; encode(message: QueryValidatorDistributionInfoRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorDistributionInfoRequest; fromJSON(object: any): QueryValidatorDistributionInfoRequest; toJSON(message: QueryValidatorDistributionInfoRequest): JsonSafe; fromPartial(object: Partial): QueryValidatorDistributionInfoRequest; fromProtoMsg(message: QueryValidatorDistributionInfoRequestProtoMsg): QueryValidatorDistributionInfoRequest; toProto(message: QueryValidatorDistributionInfoRequest): Uint8Array; toProtoMsg(message: QueryValidatorDistributionInfoRequest): QueryValidatorDistributionInfoRequestProtoMsg; }; export declare const QueryValidatorDistributionInfoResponse: { typeUrl: "/cosmos.distribution.v1beta1.QueryValidatorDistributionInfoResponse"; encode(message: QueryValidatorDistributionInfoResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorDistributionInfoResponse; fromJSON(object: any): QueryValidatorDistributionInfoResponse; toJSON(message: QueryValidatorDistributionInfoResponse): JsonSafe; fromPartial(object: Partial): QueryValidatorDistributionInfoResponse; fromProtoMsg(message: QueryValidatorDistributionInfoResponseProtoMsg): QueryValidatorDistributionInfoResponse; toProto(message: QueryValidatorDistributionInfoResponse): Uint8Array; toProtoMsg(message: QueryValidatorDistributionInfoResponse): QueryValidatorDistributionInfoResponseProtoMsg; }; export declare const QueryValidatorOutstandingRewardsRequest: { typeUrl: "/cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsRequest"; encode(message: QueryValidatorOutstandingRewardsRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorOutstandingRewardsRequest; fromJSON(object: any): QueryValidatorOutstandingRewardsRequest; toJSON(message: QueryValidatorOutstandingRewardsRequest): JsonSafe; fromPartial(object: Partial): QueryValidatorOutstandingRewardsRequest; fromProtoMsg(message: QueryValidatorOutstandingRewardsRequestProtoMsg): QueryValidatorOutstandingRewardsRequest; toProto(message: QueryValidatorOutstandingRewardsRequest): Uint8Array; toProtoMsg(message: QueryValidatorOutstandingRewardsRequest): QueryValidatorOutstandingRewardsRequestProtoMsg; }; export declare const QueryValidatorOutstandingRewardsResponse: { typeUrl: "/cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse"; encode(message: QueryValidatorOutstandingRewardsResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorOutstandingRewardsResponse; fromJSON(object: any): QueryValidatorOutstandingRewardsResponse; toJSON(message: QueryValidatorOutstandingRewardsResponse): JsonSafe; fromPartial(object: Partial): QueryValidatorOutstandingRewardsResponse; fromProtoMsg(message: QueryValidatorOutstandingRewardsResponseProtoMsg): QueryValidatorOutstandingRewardsResponse; toProto(message: QueryValidatorOutstandingRewardsResponse): Uint8Array; toProtoMsg(message: QueryValidatorOutstandingRewardsResponse): QueryValidatorOutstandingRewardsResponseProtoMsg; }; export declare const QueryValidatorCommissionRequest: { typeUrl: "/cosmos.distribution.v1beta1.QueryValidatorCommissionRequest"; encode(message: QueryValidatorCommissionRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorCommissionRequest; fromJSON(object: any): QueryValidatorCommissionRequest; toJSON(message: QueryValidatorCommissionRequest): JsonSafe; fromPartial(object: Partial): QueryValidatorCommissionRequest; fromProtoMsg(message: QueryValidatorCommissionRequestProtoMsg): QueryValidatorCommissionRequest; toProto(message: QueryValidatorCommissionRequest): Uint8Array; toProtoMsg(message: QueryValidatorCommissionRequest): QueryValidatorCommissionRequestProtoMsg; }; export declare const QueryValidatorCommissionResponse: { typeUrl: "/cosmos.distribution.v1beta1.QueryValidatorCommissionResponse"; encode(message: QueryValidatorCommissionResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorCommissionResponse; fromJSON(object: any): QueryValidatorCommissionResponse; toJSON(message: QueryValidatorCommissionResponse): JsonSafe; fromPartial(object: Partial): QueryValidatorCommissionResponse; fromProtoMsg(message: QueryValidatorCommissionResponseProtoMsg): QueryValidatorCommissionResponse; toProto(message: QueryValidatorCommissionResponse): Uint8Array; toProtoMsg(message: QueryValidatorCommissionResponse): QueryValidatorCommissionResponseProtoMsg; }; export declare const QueryValidatorSlashesRequest: { typeUrl: "/cosmos.distribution.v1beta1.QueryValidatorSlashesRequest"; encode(message: QueryValidatorSlashesRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorSlashesRequest; fromJSON(object: any): QueryValidatorSlashesRequest; toJSON(message: QueryValidatorSlashesRequest): JsonSafe; fromPartial(object: Partial): QueryValidatorSlashesRequest; fromProtoMsg(message: QueryValidatorSlashesRequestProtoMsg): QueryValidatorSlashesRequest; toProto(message: QueryValidatorSlashesRequest): Uint8Array; toProtoMsg(message: QueryValidatorSlashesRequest): QueryValidatorSlashesRequestProtoMsg; }; export declare const QueryValidatorSlashesResponse: { typeUrl: "/cosmos.distribution.v1beta1.QueryValidatorSlashesResponse"; encode(message: QueryValidatorSlashesResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorSlashesResponse; fromJSON(object: any): QueryValidatorSlashesResponse; toJSON(message: QueryValidatorSlashesResponse): JsonSafe; fromPartial(object: Partial): QueryValidatorSlashesResponse; fromProtoMsg(message: QueryValidatorSlashesResponseProtoMsg): QueryValidatorSlashesResponse; toProto(message: QueryValidatorSlashesResponse): Uint8Array; toProtoMsg(message: QueryValidatorSlashesResponse): QueryValidatorSlashesResponseProtoMsg; }; export declare const QueryDelegationRewardsRequest: { typeUrl: "/cosmos.distribution.v1beta1.QueryDelegationRewardsRequest"; encode(message: QueryDelegationRewardsRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegationRewardsRequest; fromJSON(object: any): QueryDelegationRewardsRequest; toJSON(message: QueryDelegationRewardsRequest): JsonSafe; fromPartial(object: Partial): QueryDelegationRewardsRequest; fromProtoMsg(message: QueryDelegationRewardsRequestProtoMsg): QueryDelegationRewardsRequest; toProto(message: QueryDelegationRewardsRequest): Uint8Array; toProtoMsg(message: QueryDelegationRewardsRequest): QueryDelegationRewardsRequestProtoMsg; }; export declare const QueryDelegationRewardsResponse: { typeUrl: "/cosmos.distribution.v1beta1.QueryDelegationRewardsResponse"; encode(message: QueryDelegationRewardsResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegationRewardsResponse; fromJSON(object: any): QueryDelegationRewardsResponse; toJSON(message: QueryDelegationRewardsResponse): JsonSafe; fromPartial(object: Partial): QueryDelegationRewardsResponse; fromProtoMsg(message: QueryDelegationRewardsResponseProtoMsg): QueryDelegationRewardsResponse; toProto(message: QueryDelegationRewardsResponse): Uint8Array; toProtoMsg(message: QueryDelegationRewardsResponse): QueryDelegationRewardsResponseProtoMsg; }; export declare const QueryDelegationTotalRewardsRequest: { typeUrl: "/cosmos.distribution.v1beta1.QueryDelegationTotalRewardsRequest"; encode(message: QueryDelegationTotalRewardsRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegationTotalRewardsRequest; fromJSON(object: any): QueryDelegationTotalRewardsRequest; toJSON(message: QueryDelegationTotalRewardsRequest): JsonSafe; fromPartial(object: Partial): QueryDelegationTotalRewardsRequest; fromProtoMsg(message: QueryDelegationTotalRewardsRequestProtoMsg): QueryDelegationTotalRewardsRequest; toProto(message: QueryDelegationTotalRewardsRequest): Uint8Array; toProtoMsg(message: QueryDelegationTotalRewardsRequest): QueryDelegationTotalRewardsRequestProtoMsg; }; export declare const QueryDelegationTotalRewardsResponse: { typeUrl: "/cosmos.distribution.v1beta1.QueryDelegationTotalRewardsResponse"; encode(message: QueryDelegationTotalRewardsResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegationTotalRewardsResponse; fromJSON(object: any): QueryDelegationTotalRewardsResponse; toJSON(message: QueryDelegationTotalRewardsResponse): JsonSafe; fromPartial(object: Partial): QueryDelegationTotalRewardsResponse; fromProtoMsg(message: QueryDelegationTotalRewardsResponseProtoMsg): QueryDelegationTotalRewardsResponse; toProto(message: QueryDelegationTotalRewardsResponse): Uint8Array; toProtoMsg(message: QueryDelegationTotalRewardsResponse): QueryDelegationTotalRewardsResponseProtoMsg; }; export declare const QueryDelegatorValidatorsRequest: { typeUrl: "/cosmos.distribution.v1beta1.QueryDelegatorValidatorsRequest"; encode(message: QueryDelegatorValidatorsRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegatorValidatorsRequest; fromJSON(object: any): QueryDelegatorValidatorsRequest; toJSON(message: QueryDelegatorValidatorsRequest): JsonSafe; fromPartial(object: Partial): QueryDelegatorValidatorsRequest; fromProtoMsg(message: QueryDelegatorValidatorsRequestProtoMsg): QueryDelegatorValidatorsRequest; toProto(message: QueryDelegatorValidatorsRequest): Uint8Array; toProtoMsg(message: QueryDelegatorValidatorsRequest): QueryDelegatorValidatorsRequestProtoMsg; }; export declare const QueryDelegatorValidatorsResponse: { typeUrl: "/cosmos.distribution.v1beta1.QueryDelegatorValidatorsResponse"; encode(message: QueryDelegatorValidatorsResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegatorValidatorsResponse; fromJSON(object: any): QueryDelegatorValidatorsResponse; toJSON(message: QueryDelegatorValidatorsResponse): JsonSafe; fromPartial(object: Partial): QueryDelegatorValidatorsResponse; fromProtoMsg(message: QueryDelegatorValidatorsResponseProtoMsg): QueryDelegatorValidatorsResponse; toProto(message: QueryDelegatorValidatorsResponse): Uint8Array; toProtoMsg(message: QueryDelegatorValidatorsResponse): QueryDelegatorValidatorsResponseProtoMsg; }; export declare const QueryDelegatorWithdrawAddressRequest: { typeUrl: "/cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressRequest"; encode(message: QueryDelegatorWithdrawAddressRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegatorWithdrawAddressRequest; fromJSON(object: any): QueryDelegatorWithdrawAddressRequest; toJSON(message: QueryDelegatorWithdrawAddressRequest): JsonSafe; fromPartial(object: Partial): QueryDelegatorWithdrawAddressRequest; fromProtoMsg(message: QueryDelegatorWithdrawAddressRequestProtoMsg): QueryDelegatorWithdrawAddressRequest; toProto(message: QueryDelegatorWithdrawAddressRequest): Uint8Array; toProtoMsg(message: QueryDelegatorWithdrawAddressRequest): QueryDelegatorWithdrawAddressRequestProtoMsg; }; export declare const QueryDelegatorWithdrawAddressResponse: { typeUrl: "/cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse"; encode(message: QueryDelegatorWithdrawAddressResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegatorWithdrawAddressResponse; fromJSON(object: any): QueryDelegatorWithdrawAddressResponse; toJSON(message: QueryDelegatorWithdrawAddressResponse): JsonSafe; fromPartial(object: Partial): QueryDelegatorWithdrawAddressResponse; fromProtoMsg(message: QueryDelegatorWithdrawAddressResponseProtoMsg): QueryDelegatorWithdrawAddressResponse; toProto(message: QueryDelegatorWithdrawAddressResponse): Uint8Array; toProtoMsg(message: QueryDelegatorWithdrawAddressResponse): QueryDelegatorWithdrawAddressResponseProtoMsg; }; export declare const QueryCommunityPoolRequest: { typeUrl: "/cosmos.distribution.v1beta1.QueryCommunityPoolRequest"; encode(_: QueryCommunityPoolRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryCommunityPoolRequest; fromJSON(_: any): QueryCommunityPoolRequest; toJSON(_: QueryCommunityPoolRequest): JsonSafe; fromPartial(_: Partial): QueryCommunityPoolRequest; fromProtoMsg(message: QueryCommunityPoolRequestProtoMsg): QueryCommunityPoolRequest; toProto(message: QueryCommunityPoolRequest): Uint8Array; toProtoMsg(message: QueryCommunityPoolRequest): QueryCommunityPoolRequestProtoMsg; }; export declare const QueryCommunityPoolResponse: { typeUrl: "/cosmos.distribution.v1beta1.QueryCommunityPoolResponse"; encode(message: QueryCommunityPoolResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryCommunityPoolResponse; fromJSON(object: any): QueryCommunityPoolResponse; toJSON(message: QueryCommunityPoolResponse): JsonSafe; fromPartial(object: Partial): QueryCommunityPoolResponse; fromProtoMsg(message: QueryCommunityPoolResponseProtoMsg): QueryCommunityPoolResponse; toProto(message: QueryCommunityPoolResponse): Uint8Array; toProtoMsg(message: QueryCommunityPoolResponse): QueryCommunityPoolResponseProtoMsg; }; //# sourceMappingURL=query.d.ts.map