import Tuple from '../Tuple'; import Stream from '../Stream'; declare type ObjectCallback = (obj: any, tuple?: Tuple) => any | any[] | Promise | Promise | void; export declare function unwrapTuple(callback: ObjectCallback): (input: Tuple, out: Stream) => void; export {};