/** * Data from consumer comes in a 1d-Array and we need to turn it into an uneven * 2d-grid (the hive). This method return which x,y position correspond to an * index in the array. * @param index - * @param colsByOddRow - */ export declare const unflattenPosition: (index: number, colsByOddRow: number) => { x: number; y: number; };