import Long from "long"; import _m0 from "protobufjs/minimal"; import { IdentifiedChannel, PacketState } from "./channel"; export declare const protobufPackage = "ibc.core.channel.v1"; /** GenesisState defines the ibc channel submodule's genesis state. */ export interface GenesisState { channels: IdentifiedChannel[]; acknowledgements: PacketState[]; commitments: PacketState[]; receipts: PacketState[]; sendSequences: PacketSequence[]; recvSequences: PacketSequence[]; ackSequences: PacketSequence[]; /** the sequence for the next generated channel identifier */ nextChannelSequence: Long; } /** * PacketSequence defines the genesis type necessary to retrieve and store * next send and receive sequences. */ export interface PacketSequence { portId: string; channelId: string; sequence: Long; } export declare const GenesisState: { encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; create(base?: DeepPartial): GenesisState; fromPartial(object: DeepPartial): GenesisState; }; export declare const PacketSequence: { encode(message: PacketSequence, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): PacketSequence; fromJSON(object: any): PacketSequence; toJSON(message: PacketSequence): unknown; create(base?: DeepPartial): PacketSequence; fromPartial(object: DeepPartial): PacketSequence; }; 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 {};