import { Point } from '../../..'; import { Cone } from './Cone'; import { ConeSide } from './ConeSide'; export declare class ConeLeftSide extends ConeSide { constructor(cone: Cone); get Start(): Point; get Direction(): Point; toString(): string; }