import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "ibc.core.client.v2"; /** * Config is a **per-client** configuration struct that sets which relayers are allowed to relay v2 IBC messages * for a given client. * If it is set, then only relayers in the allow list can send v2 messages * If it is not set, then the client allows permissionless relaying of v2 messages */ export interface Config { /** allowed_relayers defines the set of allowed relayers for IBC V2 protocol for the given client */ allowedRelayers: string[]; } export declare const Config: { encode(message: Config, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Config; fromJSON(object: any): Config; toJSON(message: Config): unknown; create(base?: DeepPartial): Config; fromPartial(object: DeepPartial): Config; }; 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 {};