import { IPipeNowConstraint } from './types/pipe-now-constraint.type';
import { IInferPipeNowReturn } from './types/infer-pipe-now-return.type';
export declare function pipeNow<// generics
GInitialValue, GFunctions extends IPipeNowConstraint<GInitialValue, GFunctions>>(initialValue: GInitialValue, fns: GFunctions): IInferPipeNowReturn<GInitialValue, GFunctions>;
