/** * 首尾指针同时遍历 * @param arr * @param fn */ export declare const doubleForEach: (arr: any[], fn: (item: any, index: number, type: 'left' | 'right') => void) => void;