/**
* Finds the first HTML element 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 The matched element, or undefined if no match is found.
*/
export default function getByDescriptionTerm(textMatch: string | RegExp): HTMLElement | undefined;