/**
* Returns the text direction of an element, using a call to `getComputedStyle`.
*
* @paramelement - the HTML element
* @returns the text direction of the element, 'ltr' or 'rtl'
*/exportdeclareconstgetTextDirection: (element: HTMLElement) =>"ltr" | "rtl";