import type { PathPattern } from "../types"; /** * Type guard to check if a value is a {@link PathPattern}. * * @param item - The value to check. * @returns `true` if the item is an array (representing a path pattern), `false` otherwise. */ export declare function isPathPattern(item: unknown): item is PathPattern;