/** An iterator that yields nothing. As in, it's first call to `next()` returns `{ done: true, value: undefined }`. */
export declare function empty<T = never>(): IterableIterator<T>;
export default empty;
//# sourceMappingURL=empty.d.ts.map