import { Point } from '../../../math/geometry/point'; import { ConeSide } from './ConeSide'; import { IConeSweeper } from './IConeSweeper'; export declare class Cone { removed: boolean; get Removed(): boolean; set Removed(value: boolean); apex: Point; coneSweeper: IConeSweeper; constructor(apex: Point, coneSweeper: IConeSweeper); get Apex(): Point; set Apex(value: Point); get RightSideDirection(): Point; get LeftSideDirection(): Point; private rightSide; get RightSide(): ConeSide; set RightSide(value: ConeSide); private leftSide; get LeftSide(): ConeSide; set LeftSide(value: ConeSide); }