/** * A utility which allows invoking a static function to the end of the pipe chain. * * @param staticFunction - A static function to perform. Its first argument must * be an iterable. * @param params - The parameters passed to the static function. */ export declare function andFinally, R>(staticFunction: (iterable: Iterable, ...params: P) => R, ...params: P): (iterable: Iterable) => R;