/** * Group entries into neighbouring pairs. * * @example * [1,2,3] -> [[1,2], [2,3]] */ export declare const neighbourGroup: (arr: T[]) => T[][];