export declare abstract class Shape { static tolerance: number; abstract transform(matrix: Array): this; static applyTransform(p: Array, m: Array): Array; } //# sourceMappingURL=Shape.d.ts.map