import type { IArea } from './area'; import type { ICellAddress } from './area'; /** * area being a class is a mistake, but it will take a while * to undo that (if we do it at all). for now we'll start creating * utilities that can operate on the interface type, and maybe over * time the class will wither. */ export declare function Iterate(area: IArea): Generator;