import type { Point } from '../../../types'; /** * Check if polygon is a complex polygon with intersection * @param polygon Array<[number, number]> */ export declare function getIsComplexPolygon(polygon: Point[]): boolean;