import { SimpleTextItem } from './simple-text-item'; /** * Groups the list of items into a table structure. * * @param items The target list of simplified text items. * @returns A 2-dimensional array of the text items, * where the first dimension is for the able rows, * and the second dimension is for the cells. */ export declare function groupIntoRows(items: readonly Readonly[]): SimpleTextItem[][]; //# sourceMappingURL=items-shaper.d.ts.map