import { Point } from './vector'; export declare function normalizePolygon(vertices: Point[], isHole?: boolean): Point[]; export declare function offsetPolygon(polygon: Point[], holes: Point[][], distance: number, opts?: { epsilon?: number; infiniteLoopGuard?: number; }): Point[][];