import { XPathModels } from './xpath-models'; export * from './xpath-models'; /** * Class for parsing an XPath string. */ export declare class XPathParser { hashtagConfig: XPathModels.HashtagConfig; constructor(hashtagConfig?: XPathModels.HashtagConfig); /** * Parses an XPath string and returns a parse tree or throw a parse exception. * @param input XPath string to parse * @exception @see {XPathModels.ParseError} */ parse(input: string): XPathModels.XPathExpression; /** * Parses an XPath string and returns an annotated version of the input string. * @param input XPath string to parse * @exception @see {XPathModels.ParseError} */ annotate(input: string): XPathModels.XPathToken[]; } //# sourceMappingURL=xpath.d.ts.map