import type { XPathSegment } from './xpath-types.js';
/**
 * Parses an XPath expression into structured segments.
 *
 * @param xpath - The XPath expression to parse
 * @returns Array of XPathSegment objects, or null if the XPath cannot be parsed
 */
export declare function parseXPathToSegments(xpath: string): XPathSegment[] | null;
//# sourceMappingURL=xpath-parser.d.ts.map