import type { IPathSegment } from './segment/path-segment.type.js';
/**
 * Represents a list of segments forming a Path.
 * This list is considered valid.
 */
export type IPathSegments = readonly IPathSegment[];
