type FlowFunction<P> = (param: P) => P; /** * 类似 lodash.flow 的方法 * @param flows */ export declare function flow<P>(...flows: FlowFunction<P>[]): FlowFunction<P>; export {};