/**
* Check if an element is not editable (input, select, textarea, contentEditable).
* @paramelement - The element to check
* @returns True if the element is not editable, false otherwise
*/exportdeclareconstisNotEditableElement: (element: HTMLElement) =>boolean;