import { AnyFunc } from '../types';
/**
 * 组合多个函数为一个，顺序执行
 * @param fns - 函数列表
 */
export declare function compose(fns: AnyFunc[]): AnyFunc;
