import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "cosmos.params.v1beta1"; /** ParameterChangeProposal defines a proposal to change one or more parameters. */ export interface ParameterChangeProposal { title: string; description: string; changes: ParamChange[]; } /** * ParamChange defines an individual parameter change, for use in * ParameterChangeProposal. */ export interface ParamChange { subspace: string; key: string; value: string; } export declare const ParameterChangeProposal: { encode(message: ParameterChangeProposal, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ParameterChangeProposal; fromJSON(object: any): ParameterChangeProposal; toJSON(message: ParameterChangeProposal): unknown; create(base?: DeepPartial): ParameterChangeProposal; fromPartial(object: DeepPartial): ParameterChangeProposal; }; export declare const ParamChange: { encode(message: ParamChange, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ParamChange; fromJSON(object: any): ParamChange; toJSON(message: ParamChange): unknown; create(base?: DeepPartial): ParamChange; fromPartial(object: DeepPartial): ParamChange; }; 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 {};