/** * Create an empty iterator. * * @returns A new iterator which yields nothing. * * #### Example * ```typescript * import { empty } from '@lumino/algorithm'; * * let stream = empty(); * * Array.from(stream); // [] * ``` */ export declare function empty(): IterableIterator;