import type { LayoutNode } from "../layout"; import type { ConfigurableItemUtils } from "./ConfigurableItemUtils"; import type { LayoutItemUtils } from "./LayoutItemUtils"; /** * Arguments for the getLayoutDesignerSettings callback. */ export interface GetLayoutDesignerSettingsArgs { /** * The layout node that is being configured. */ node: LayoutNode; /** * Common utilities used for layout configuration. */ utils: LayoutItemUtils & ConfigurableItemUtils; }