/**
 * Find the closest parent that matches a selector
 *
 * @param {Element|null} element Target element
 * @param {Element|null|string} selector Selector or parent to match
 * @returns {Element|null}
 */
export declare function closest(element: Element | null, selector: Element | null | string): Element | null;
