QueryConsensusStateResponse: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): QueryConsensusStateResponse;
    encode(message: QueryConsensusStateResponse, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: QueryConsensusStateResponseAmino): QueryConsensusStateResponse;
    fromAminoMsg(object: QueryConsensusStateResponseAminoMsg): QueryConsensusStateResponse;
    fromPartial(object: {
        consensusState?: {
            $typeUrl?: string;
            typeUrl?: string;
            value?: Uint8Array;
        };
        proof?: Uint8Array;
        proofHeight?: {
            revisionHeight?: bigint;
            revisionNumber?: bigint;
        };
    }): QueryConsensusStateResponse;
    fromProtoMsg(message: QueryConsensusStateResponseProtoMsg): QueryConsensusStateResponse;
    toAmino(message: QueryConsensusStateResponse): QueryConsensusStateResponseAmino;
    toAminoMsg(message: QueryConsensusStateResponse): QueryConsensusStateResponseAminoMsg;
    toProto(message: QueryConsensusStateResponse): Uint8Array;
    toProtoMsg(message: QueryConsensusStateResponse): QueryConsensusStateResponseProtoMsg;
}