import { Flow, Methods } from '../types/core';
import { ArrayFlowMethods } from '../types/flows';
export declare const arrayFlow: <T extends any[], M extends Methods<any[]>>(value: T, customMethods?: M) => Flow<T> & M & ArrayFlowMethods;
export default arrayFlow;
