import { Point } from '../types';
interface Cell {
    leftTop: Point;
    index: Point;
}
export default function iterateAllCells(): IterableIterator<Cell>;
export {};
