import { Edge, Leg, TransitionDirection } from '../../shared/enums/movement-enums'; import { ArcVectorIndexType } from '../../shared/types/arc-vector/arc-vector-index.type'; type ArgsType = { transitionDirection: TransitionDirection; leg: Leg; edge: Edge; }; export declare class CompassArc { private readonly points; getArcVectorIndex(data: ArgsType): ArcVectorIndexType; private calcStepPoints; private typifyToArcVectorIndex; } export {};