import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "cosmos.protocolpool.v1"; /** ContinuousFund defines the fields of continuous fund proposal. */ export interface ContinuousFund { /** Recipient is the address string of the account receiving funds. */ recipient: string; /** Percentage is the percentage of funds to be allocated from Community pool. */ percentage: string; /** Optional, if expiry is set, removes the state object when expired. */ expiry: Date | undefined; } /** Params defines the parameters for the protocolpool module. */ export interface Params { /** * EnabledDistributionDenoms lists the denoms that are allowed to be distributed. * This is to avoid spending time distributing undesired tokens to continuous funds and budgets. */ enabledDistributionDenoms: string[]; /** * DistributionFrequency is the frequency (in terms of blocks) that funds are distributed out from the * x/protocolpool module. */ distributionFrequency: Long; } export declare const ContinuousFund: { encode(message: ContinuousFund, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ContinuousFund; fromJSON(object: any): ContinuousFund; toJSON(message: ContinuousFund): unknown; create(base?: DeepPartial): ContinuousFund; fromPartial(object: DeepPartial): ContinuousFund; }; export declare const Params: { encode(message: Params, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Params; fromJSON(object: any): Params; toJSON(message: Params): unknown; create(base?: DeepPartial): Params; fromPartial(object: DeepPartial): Params; }; 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 {};