import type { Optional } from '@ephox/katamari'; import { type SugarElement } from '@ephox/sugar'; export declare const enum Placement { North = "north", Northeast = "northeast", Northwest = "northwest", South = "south", Southeast = "southeast", Southwest = "southwest", East = "east", West = "west" } declare const setPlacement: (element: SugarElement, placement: Placement) => void; declare const getPlacement: (element: SugarElement) => Optional; declare const reset: (element: SugarElement) => void; export { setPlacement, getPlacement, reset }; //# sourceMappingURL=Placement.d.ts.map