QueryConnectionChannelsResponse: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): QueryConnectionChannelsResponse;
    encode(message: QueryConnectionChannelsResponse, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: QueryConnectionChannelsResponseAmino): QueryConnectionChannelsResponse;
    fromAminoMsg(object: QueryConnectionChannelsResponseAminoMsg): QueryConnectionChannelsResponse;
    fromPartial(object: {
        channels?: {
            channelId?: string;
            connectionHops?: string[];
            counterparty?: {
                channelId?: string;
                portId?: string;
            };
            ordering?: Order;
            portId?: string;
            state?: State;
            version?: string;
        }[];
        height?: {
            revisionHeight?: bigint;
            revisionNumber?: bigint;
        };
        pagination?: {
            nextKey?: Uint8Array;
            total?: bigint;
        };
    }): QueryConnectionChannelsResponse;
    fromProtoMsg(message: QueryConnectionChannelsResponseProtoMsg): QueryConnectionChannelsResponse;
    toAmino(message: QueryConnectionChannelsResponse): QueryConnectionChannelsResponseAmino;
    toAminoMsg(message: QueryConnectionChannelsResponse): QueryConnectionChannelsResponseAminoMsg;
    toProto(message: QueryConnectionChannelsResponse): Uint8Array;
    toProtoMsg(message: QueryConnectionChannelsResponse): QueryConnectionChannelsResponseProtoMsg;
}