import { ConsensusParams, type ConsensusParamsSDKType } from '../../../tendermint/types/params.js'; import { BinaryReader, BinaryWriter } from '../../../binary.js'; import { type JsonSafe } from '../../../json-safe.js'; /** QueryParamsRequest defines the request type for querying x/consensus parameters. */ export interface QueryParamsRequest { } export interface QueryParamsRequestProtoMsg { typeUrl: '/cosmos.consensus.v1.QueryParamsRequest'; value: Uint8Array; } /** QueryParamsRequest defines the request type for querying x/consensus parameters. */ export interface QueryParamsRequestSDKType { } /** QueryParamsResponse defines the response type for querying x/consensus parameters. */ export interface QueryParamsResponse { /** * params are the tendermint consensus params stored in the consensus module. * Please note that `params.version` is not populated in this response, it is * tracked separately in the x/upgrade module. */ params?: ConsensusParams; } export interface QueryParamsResponseProtoMsg { typeUrl: '/cosmos.consensus.v1.QueryParamsResponse'; value: Uint8Array; } /** QueryParamsResponse defines the response type for querying x/consensus parameters. */ export interface QueryParamsResponseSDKType { params?: ConsensusParamsSDKType; } export declare const QueryParamsRequest: { typeUrl: "/cosmos.consensus.v1.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.consensus.v1.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; }; //# sourceMappingURL=query.d.ts.map