import { type Optional } from '@ephox/katamari'; import type { SugarElement } from '../node/SugarElement'; declare const closest: (target: SugarElement) => Optional>; declare const isEditable: (element: SugarElement, assumeEditable?: boolean) => boolean; declare const getRaw: (element: SugarElement) => string; declare const get: (element: SugarElement) => boolean; declare const set: (element: SugarElement, editable: boolean) => void; export { get, getRaw, closest, isEditable, set }; //# sourceMappingURL=ContentEditable.d.ts.map