/** A cell coordinates in the spreadsheet */ export type Point = { /** The cell's column */ column: number; /** The cell's row */ row: number; }; /** Return whether two given points are the equal */ export declare function isEqual(source: Point, target: Point): boolean; /** The origin point in matrices */ export declare const ORIGIN: Point;