/** * Implementation of KoLmafia's `xpath()` function. * @param html XML or HTML markup. This is sanitized * @param selector XPath selector supported by HtmlCleaner. */ export declare function xpath(html: string, selector: string): string[];