import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "ibc.applications.interchain_accounts.host.v1"; /** * Params defines the set of on-chain interchain accounts parameters. * The following parameters may be used to disable the host submodule. */ export interface Params { /** host_enabled enables or disables the host submodule. */ hostEnabled: boolean; /** allow_messages defines a list of sdk message typeURLs allowed to be executed on a host chain. */ allowMessages: string[]; } /** * QueryRequest defines the parameters for a particular query request * by an interchain account. */ export interface QueryRequest { /** * path defines the path of the query request as defined by ADR-021. * https://github.com/cosmos/cosmos-sdk/blob/main/docs/architecture/adr-021-protobuf-query-encoding.md#custom-query-registration-and-routing */ path: string; /** * data defines the payload of the query request as defined by ADR-021. * https://github.com/cosmos/cosmos-sdk/blob/main/docs/architecture/adr-021-protobuf-query-encoding.md#custom-query-registration-and-routing */ data: Uint8Array; } 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; }; export declare const QueryRequest: { encode(message: QueryRequest, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): QueryRequest; fromJSON(object: any): QueryRequest; toJSON(message: QueryRequest): unknown; create(base?: DeepPartial): QueryRequest; fromPartial(object: DeepPartial): QueryRequest; }; 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 {};