import type { SlateEditor } from '@udecode/plate-common'; import type { Point } from 'slate'; /** * Is a point at the end of a word */ export declare function isPointAtWordEnd(editor: SlateEditor, { at }: { at: Point; }): boolean;