/** * Apply the transforms to the polyline. * * @param polyline the polyline * @param transforms the transforms array * @returns the transformed polyline */ import type { PointTuple, Transform } from './types'; type Point = PointTuple; export default function applyTransforms(polyline: Point[], transforms?: Transform[]): Point[]; export {}; //# sourceMappingURL=applyTransforms.d.ts.map