import type { BuildLinePathOptions, GeometryPoint, LinePathModel } from "./types";
export declare const splitDefinedSegments: <TPoint extends GeometryPoint = GeometryPoint>(points: TPoint[], connectNulls?: boolean) => TPoint[][];
export declare const buildLineSegmentPath: <TPoint extends GeometryPoint>(points: TPoint[], curve?: BuildLinePathOptions<TPoint>["curve"]) => string;
export declare const buildLinePath: <TPoint extends GeometryPoint = GeometryPoint>({ points, curve, connectNulls, decimation }: BuildLinePathOptions<TPoint>) => LinePathModel<TPoint>;
//# sourceMappingURL=linePath.d.ts.map