import { Path } from "./Path"; export declare type Point = { path: Path; offset: number; }; declare function compare(a: Point, b: Point): number; declare function isBefore(a: Point, b: Point): boolean; declare function isAfter(a: Point, b: Point): boolean; declare function equals(a: Point, b: Point): boolean; export declare const Point: { compare: typeof compare; equals: typeof equals; isBefore: typeof isBefore; isAfter: typeof isAfter; }; export {};