import Long from "long"; import _m0 from "protobufjs/minimal"; import { ContinuousFund, Params } from "./types"; export declare const protobufPackage = "cosmos.protocolpool.v1"; /** GenesisState defines the protocolpool module's genesis state. */ export interface GenesisState { /** ContinuousFunds defines the continuous funds at genesis. */ continuousFunds: ContinuousFund[]; /** * Params defines the parameters of this module, currently only contains the * denoms that will be used for continuous fund distributions. */ params: Params | undefined; } export declare const GenesisState: { encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; create(base?: DeepPartial): GenesisState; fromPartial(object: DeepPartial): GenesisState; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Long ? string | number | Long : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {};