import { IdentifiedConnection, type IdentifiedConnectionSDKType, ConnectionPaths, type ConnectionPathsSDKType, Params, type ParamsSDKType } from './connection.js'; import { BinaryReader, BinaryWriter } from '../../../../binary.js'; import { type JsonSafe } from '../../../../json-safe.js'; /** GenesisState defines the ibc connection submodule's genesis state. */ export interface GenesisState { connections: IdentifiedConnection[]; clientConnectionPaths: ConnectionPaths[]; /** the sequence for the next generated connection identifier */ nextConnectionSequence: bigint; params: Params; } export interface GenesisStateProtoMsg { typeUrl: '/ibc.core.connection.v1.GenesisState'; value: Uint8Array; } /** GenesisState defines the ibc connection submodule's genesis state. */ export interface GenesisStateSDKType { connections: IdentifiedConnectionSDKType[]; client_connection_paths: ConnectionPathsSDKType[]; next_connection_sequence: bigint; params: ParamsSDKType; } export declare const GenesisState: { typeUrl: "/ibc.core.connection.v1.GenesisState"; encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): JsonSafe; fromPartial(object: Partial): GenesisState; fromProtoMsg(message: GenesisStateProtoMsg): GenesisState; toProto(message: GenesisState): Uint8Array; toProtoMsg(message: GenesisState): GenesisStateProtoMsg; }; //# sourceMappingURL=genesis.d.ts.map