/** * Traverses over all nested dom nodes and return true only if * dom node or it's children have text, aria-label attribute or * aria-labelledby attribute */ declare const hasLabels: (node: HTMLElement | null) => boolean; export default hasLabels;