import type { PathSegment, Position } from '@tracespace/plotter'; export interface PathWalk { start: Position; end: Position; segments: PathSegment[]; } export declare function walkPaths(segments: PathSegment[]): PathWalk[]; export declare function reverseSegment(segment: S): S;