/**
 * @author Thomas Barnekow
 * @license MIT
 */
import { XContainer, XNode } from '../internal.js';
/**
 * For the elements contained in the source sequence, returns the concatenated
 * sequences of child nodes of such elements in document order.
 *
 * @typeParam T The type of the elements contained in the source sequence.
 * @returns The concatenated, flat sequence of child nodes in document order.
 */
export declare function nodes<T extends XContainer>(source: Iterable<T>): Iterable<XNode>;
