import { Path } from '../class/path.class.js';
import type { IUncheckedPathSegments } from './segments/unchecked-path-segments.type.js';
/**
 * Various inputs that may serve as a path.
 */
export type IPathInput = string | IUncheckedPathSegments | Path;
