import type { Universe } from '@ephox/boss'; import type { SpotPoint } from '../data/Types'; type ToLeafApi = (universe: Universe, element: E, offset: number) => SpotPoint; declare const toLeaf: ToLeafApi; type FreefallLtrApi = (universe: Universe, element: E) => SpotPoint; declare const freefallLtr: FreefallLtrApi; type FreefallRtlApi = (universe: Universe, element: E) => SpotPoint; declare const freefallRtl: FreefallRtlApi; export { toLeaf, freefallLtr, freefallRtl }; //# sourceMappingURL=Descent.d.ts.map