import { Decimate_DouglasPeucker } from "./douglas-peucker"; import { DecimateBatch, DecimateOnline } from "./prelude/interfaces/decimate"; import { Decimate_STTrace } from "./sttrace/decimate-sttrace"; declare const Decimate: { STTrace: typeof Decimate_STTrace; DouglasPeucker: typeof Decimate_DouglasPeucker; }; export { DecimateBatch, DecimateOnline, Decimate };