import { AnyFunction } from '../../types';
export declare const chainFns: <F extends (AnyFunction | undefined)[]>(...fns: F) => (...params: Parameters<Exclude<F[number], undefined>>) => void;
