import { Item } from "./types";
/**
 * Turns [[row1, row1], [row2]] into [[row1, row1], [row2, row2]]
 */
export declare function fillGroups(groups: Item[][], currentId?: string | null, shift?: boolean): Item[][];
