/** * Limit array to a certain number of elements and return the remaining count. * It is useful for displaying the first few elements and showing the remaining count. * @param arr [] * @param limit number * @returns { limitedArray: T[], remaining: number } */ export declare const limitArray: (arr: T[], limit?: number) => { limitedArray: T[]; remaining: number; }; //# sourceMappingURL=limit-array.d.ts.map