import type { GeometryPoint, LinePathDecimationConfig } from "./types";
export declare const splitLinePathSegments: <TPoint extends GeometryPoint = GeometryPoint>(points: TPoint[], connectNulls?: boolean) => TPoint[][];
export declare const getDecimatedLinePathSegments: <TPoint extends GeometryPoint = GeometryPoint>({ connectNulls, decimation, points }: {
    connectNulls?: boolean;
    decimation?: false | LinePathDecimationConfig | undefined;
    points: TPoint[];
}) => TPoint[][];
//# sourceMappingURL=lineDecimation.d.ts.map