/** * Walks a DOM tree up to the provided `stopElement`, or if falsy before. * @param element * @param stopElement */ export declare function walkUpTreeUntil(element: HTMLElement, shouldStop: (element: HTMLElement) => boolean): HTMLElement;