P1061R10 mentions "empty" twice, but doesn't answer your question directly and the latest C++26 draft doesn't include the wording for P1061 yet, but, I dare to say Yes.
In P1061, the authors showsshow many examples of how letting structured bindingbindings introduce packs simplifies generic code where std::apply must be used Todaytoday, sometimes in multiple layers. Even the implementation of std::apply itself could be simplified to
template <class F, class Tuple>
constexpr decltype(auto) apply(F &&f, Tuple &&t) {
auto&& [...elems] = t;
return std::invoke(std::forward<F>(f),
forward_like<Tuple, decltype(elems)>(elems)...);
}
according to the proposal. If empty packs will not be allowed, this implementation of std::apply would not work, and neither would many other situations in generic code.
Therefore, it's without question that the authors mentmeant for empty packs to be allowed.
(Also, the experimental implementation of P1061 in clangClang accepts them: Demo)