/**
 * Rounded polygon corners — ported from Python `segments.roundcorners`.
 */
import { Point, type XY } from "./point.js";
/** Convex polygon corner rounding (subset; matches Python for typical boxes). */
export declare function roundCorners(verts: XY[], radius: number): Point[];
