import type { PathArray } from '../types'; /** * Iterates an array to check if it's a `PathArray` * with all segments are in non-shorthand notation * with absolute values. */ export declare function isNormalizedArray(path: string | PathArray): path is PathArray;