import { Params } 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 { } /** QueryParamsResponse is the response type for the Query/Params RPC method. */ export interface QueryParamsResponse { /** params defines the parameters of the module. */ params: Params; } /** * QueryEpochProvisionsRequest is the request type for the * Query/EpochProvisions RPC method. */ export interface QueryEpochProvisionsRequest { } /** * QueryEpochProvisionsResponse is the response type for the * Query/EpochProvisions RPC method. */ export interface QueryEpochProvisionsResponse { /** 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; fromJSON(_: any): QueryParamsRequest; toJSON(_: QueryParamsRequest): unknown; fromPartial(_: DeepPartial): QueryParamsRequest; }; export declare const QueryParamsResponse: { encode(message: QueryParamsResponse, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsResponse; fromJSON(object: any): QueryParamsResponse; toJSON(message: QueryParamsResponse): unknown; fromPartial(object: DeepPartial): QueryParamsResponse; }; export declare const QueryEpochProvisionsRequest: { encode(_: QueryEpochProvisionsRequest, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): QueryEpochProvisionsRequest; fromJSON(_: any): QueryEpochProvisionsRequest; toJSON(_: QueryEpochProvisionsRequest): unknown; fromPartial(_: DeepPartial): QueryEpochProvisionsRequest; }; export declare const QueryEpochProvisionsResponse: { encode(message: QueryEpochProvisionsResponse, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): QueryEpochProvisionsResponse; fromJSON(object: any): QueryEpochProvisionsResponse; toJSON(message: QueryEpochProvisionsResponse): unknown; fromPartial(object: DeepPartial): QueryEpochProvisionsResponse; };