import type { Cell } from "../types"; /** * @description Gets all rows from the given XLSX-file and returns them as a 2D array. * @param {Uint8Array | ArrayBuffer}bytes - The XLSX-file to parse * @returns {Cell[][]} An array of rows, where each row is an array of cells */ export declare function getAllRows(bytes: Uint8Array | ArrayBuffer): Cell[][]; export default getAllRows;