import { Editor } from 'slate'; /** * Is the selection focus at the start or end of its parent block. * * @returns * Indicate which edge the selection at. */ export declare function isSelectionAtBlockEdge(editor: Editor): 'start' | 'end' | undefined;