import type { Universe } from '@ephox/boss'; import type { SpotPoint } from '../api/data/Types'; /** * Return the last available cursor position in the node. */ declare const toLast: (universe: Universe, node: E) => SpotPoint; declare const toLower: (universe: Universe, node: E) => SpotPoint; /** * Descend down to a leaf node at the given offset. */ declare const toLeaf: (universe: Universe, element: E, offset: number) => SpotPoint; declare const freefallLtr: (universe: Universe, element: E) => SpotPoint; declare const freefallRtl: (universe: Universe, element: E) => SpotPoint; export { toLast, toLeaf, toLower, freefallLtr, freefallRtl }; //# sourceMappingURL=Navigation.d.ts.map