import { Params, ParamsSDKType } from "./mint"; import * as _m0 from "protobufjs/minimal"; import { DeepPartial } from "@osmonauts/helpers"; /** QueryParamsRequest is the request type for the Query/Params RPC method. */ export interface QueryParamsRequest { } /** 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; } /** QueryParamsResponse is the response type for the Query/Params RPC method. */ export interface QueryParamsResponseSDKType { /** params defines the parameters of the module. */ params: ParamsSDKType; } /** * QueryEpochProvisionsRequest is the request type for the * Query/EpochProvisions RPC method. */ export interface QueryEpochProvisionsRequest { } /** * QueryEpochProvisionsRequest is the request type for the * Query/EpochProvisions RPC method. */ export interface QueryEpochProvisionsRequestSDKType { } /** * QueryEpochProvisionsResponse is the response type for the * Query/EpochProvisions RPC method. */ export interface QueryEpochProvisionsResponse { /** epoch_provisions is the current minting per epoch provisions value. */ epochProvisions: Uint8Array; } /** * QueryEpochProvisionsResponse is the response type for the * Query/EpochProvisions RPC method. */ export interface QueryEpochProvisionsResponseSDKType { /** epoch_provisions is the current minting per epoch provisions value. */ epoch_provisions: Uint8Array; } export declare const QueryParamsRequest: { encode(_: QueryParamsRequest, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsRequest; fromPartial(_: DeepPartial): QueryParamsRequest; }; export declare const QueryParamsResponse: { encode(message: QueryParamsResponse, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsResponse; fromPartial(object: DeepPartial): QueryParamsResponse; }; export declare const QueryEpochProvisionsRequest: { encode(_: QueryEpochProvisionsRequest, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): QueryEpochProvisionsRequest; fromPartial(_: DeepPartial): QueryEpochProvisionsRequest; }; export declare const QueryEpochProvisionsResponse: { encode(message: QueryEpochProvisionsResponse, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): QueryEpochProvisionsResponse; fromPartial(object: DeepPartial): QueryEpochProvisionsResponse; };