import { IterableX } from '../iterable'; /** * Expands the sequence by recursively applying a selector function. * @param {Iterable} source Source sequence. * @param {function(value: T): Iterable} selector Selector function to retrieve the next sequence to expand * @return {Iterable} Sequence with results from the recursive expansion of the source sequence. */ export declare function expand(source: Iterable, selector: (value: TSource) => Iterable): IterableX;