import type { SugarElement } from '../node/SugarElement'; interface SelectionStart { startContainer: () => SugarElement; startOffset: () => number; } declare const isLeft: (parent: SugarElement, selection: SelectionStart) => boolean; declare const isAtLeftEdge: (parent: SugarElement, element: SugarElement, offset: number) => boolean; declare const isRight: (parent: SugarElement, selection: SelectionStart) => boolean; declare const isAtRightEdge: (parent: SugarElement, element: SugarElement, offset: number) => boolean; export { isLeft, isAtLeftEdge, isRight, isAtRightEdge }; //# sourceMappingURL=Edge.d.ts.map