import { Canvas } from '../canvas'; import { PercentLength } from '@nativescript/core/ui/styling/style-properties'; import Rectangle from './rectangle'; export default class Line extends Rectangle { constructor(); drawOnCanvas(canvas: Canvas): void; startX: PercentLength; startY: PercentLength; stopX: PercentLength; stopY: PercentLength; }