/**
 * @public
 * An iterator that is done.
 */
export declare const iteratorEmptyIterator: IterableIterator<any> & {
    result: {
        done: true;
        value: any;
    };
};
//# sourceMappingURL=iterator-empty-iterator.d.ts.map