export declare class XPathException extends Error { static INVALID_EXPRESSION_ERR: number; static TYPE_ERR: number; static fromMessage(message: string, error?: Error): XPathException; code?: number; exception?: Error; constructor(code?: number, error?: Error, message?: string); toString(): string; }