/**
* Queries and returns an array of HTML elements with the role "definition" (DD)
* that matches the specified text.
*
* @param textMatch - The text to match within the HTML elements. It can be a string or a regular expression.
* @returns An array of HTML elements that match the given text.
*/
export default function getAllByDescriptionTerm(textMatch: string | RegExp): HTMLElement[];