import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "ibc.applications.interchain_accounts.controller.v1"; /** * Params defines the set of on-chain interchain accounts parameters. * The following parameters may be used to disable the controller submodule. */ export interface Params { /** controller_enabled enables or disables the controller submodule. */ controllerEnabled: boolean; } 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 {};