import { SelectionContext } from "../../canvas/selection/selectionContext.js"; //#region src/gui/hierarchy/hierarchyContext.d.ts interface HierarchyState { selectedElementId: string | null; expandedIds: Set; draggedElementId: string | null; dropTargetId: string | null; dropPosition: "before" | "after" | "inside" | null; } interface HierarchyActions { select(elementId: string | null): void; toggleExpanded(elementId: string): void; setExpanded(elementId: string, expanded: boolean): void; startDrag(elementId: string): void; updateDropTarget(targetId: string | null, position: "before" | "after" | "inside" | null): void; endDrag(): void; reorder(sourceId: string, targetId: string, position: "before" | "after" | "inside"): void; } interface HierarchyContext { state: HierarchyState; actions: HierarchyActions; getCanvasSelectionContext?: () => SelectionContext | undefined; /** * Get the currently highlighted element from the canvas. */ getHighlightedElement?: () => HTMLElement | null; /** * Set the highlighted element on the canvas. */ setHighlightedElement?: (element: HTMLElement | null) => void; } declare const hierarchyContext: { __context__: HierarchyContext; }; //#endregion export { HierarchyActions, HierarchyContext, HierarchyState, hierarchyContext }; //# sourceMappingURL=hierarchyContext.d.ts.map