/**
 * Check if passed element is contenteditable
 * @param element - html element to check
 * @returns true if element is contentEditable, false otherwise
 */
export declare function isContentEditable(element: HTMLElement): boolean;
