import type { PathArray } from '../types'; /** * Parses a path string value and returns an array * of segments we like to call `pathArray`. */ export declare function parsePathString(pathInput: PathArray | string): PathArray | string;