/**
 * Returns a list of all parents of an element, excepting the `<body>` and `<html>` tags.
 * @param element
 */
export declare const getAllParents: (element: Element) => HTMLElement[];
