import type { PathArray, AbsoluteArray } from '../types'; /** * Iterates an array to check if it's a `PathArray` * with all absolute values. */ export declare function isAbsoluteArray(path: string | PathArray): path is AbsoluteArray;