export interface ISimplifyObjectPoint { x: number; y: number; } export declare function Simplify(points: ISimplifyObjectPoint[], tolerance?: number, highestQuality?: boolean): ISimplifyObjectPoint[];