import { type IterifiedIterable } from './iterified.js'; export { iterifiedUnwrapped, type IterifiedUnwrapped }; declare function iterifiedUnwrapped(): IterifiedUnwrapped; type IterifiedUnwrapped = { iterable: IterifiedIterable; next: (nextValue: TNextValue) => void; done: (returnValue: TDoneValue) => void; error: (error?: unknown) => void; };