/** * @returns The first hidden parent element, or the element itself (if hidden). * If the element is already visible, the function returns `undefined`. * * @param element The reference element. */ export declare const getHiddenParent: (element: HTMLElement) => HTMLElement | undefined;