import { type PathArray } from '@antv/util'; import type { Point } from '../../types'; /** * 计算 Hull 路径 * * Compute Hull Path * @param points - 顶点列表 | Vertices of Hull * @param padding - 内边距 | padding * @param corner - 拐角类型,目前支持 'sharp'、'rounded' 和 'smooth' | Corner type, currently supports 'sharp', 'rounded' and 'smooth' * @returns Hull 路径 | Hull Path */ export declare function computeHullPath(points: Point[], padding: number, corner: 'rounded' | 'smooth' | 'sharp'): PathArray;