export interface Point { x: number; y: number; } export interface BoundPoint { min: Point; max: Point; } export declare function pathIntersection(path1: any, path2: any): number | any[];