import * as _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[]; /** cross_chain is a flag to indicate whether it is a cross-chain proposal */ crossChain: boolean; /** addresses is destination smart contract address(es), only used when it is a cross-chain proposal */ addresses: string[]; } /** ParameterChangeProposal defines a proposal to change one or more parameters. */ export interface ParameterChangeProposalSDKType { title: string; description: string; changes: ParamChangeSDKType[]; cross_chain: boolean; addresses: string[]; } /** * ParamChange defines an individual parameter change, for use in * ParameterChangeProposal. */ export interface ParamChange { subspace: string; key: string; value: string; } /** * ParamChange defines an individual parameter change, for use in * ParameterChangeProposal. */ export interface ParamChangeSDKType { 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; fromPartial, never>)[] & Record, never>) | undefined; crossChain?: boolean | undefined; addresses?: (string[] & string[] & Record, never>) | undefined; } & Record, never>>(object: I): ParameterChangeProposal; fromSDK(object: ParameterChangeProposalSDKType): ParameterChangeProposal; toSDK(message: ParameterChangeProposal): ParameterChangeProposalSDKType; }; 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; fromPartial, never>>(object: I): ParamChange; fromSDK(object: ParamChangeSDKType): ParamChange; toSDK(message: ParamChange): ParamChangeSDKType; };