import { Point } from '../../..'; import { PolylinePoint } from '../../../math/geometry/polylinePoint'; import { ConeSide } from './ConeSide'; export declare class BrokenConeSide extends ConeSide { start: Point; get Start(): Point; ConeSide: ConeSide; EndVertex: PolylinePoint; get End(): Point; constructor(start: Point, end: PolylinePoint, coneSide: ConeSide); get Direction(): Point; toString(): string; }