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