IdentifiedChannel: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): IdentifiedChannel;
    encode(message: IdentifiedChannel, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: IdentifiedChannelAmino): IdentifiedChannel;
    fromAminoMsg(object: IdentifiedChannelAminoMsg): IdentifiedChannel;
    fromPartial(object: {
        channelId?: string;
        connectionHops?: string[];
        counterparty?: {
            channelId?: string;
            portId?: string;
        };
        ordering?: Order;
        portId?: string;
        state?: State;
        version?: string;
    }): IdentifiedChannel;
    fromProtoMsg(message: IdentifiedChannelProtoMsg): IdentifiedChannel;
    toAmino(message: IdentifiedChannel): IdentifiedChannelAmino;
    toAminoMsg(message: IdentifiedChannel): IdentifiedChannelAminoMsg;
    toProto(message: IdentifiedChannel): Uint8Array;
    toProtoMsg(message: IdentifiedChannel): IdentifiedChannelProtoMsg;
}