import { Shape } from './Shape'; import { ShapeNameProps } from './ShapeNameProps'; export declare class Triangle extends Shape { private x1; private y1; private x2; private y2; private x3; private y3; constructor(xBound: number, yBound: number); set props([x1, y1, x2, y2, x3, y3]: number[]); get props(): number[]; get svg(): ShapeNameProps; clone(): Shape; mutate(): void; rasterize(): number[][]; }