import type { LayoutNode } from "../layout"; import type { LayoutDesignerSettings } from "./LayoutDesignerSettings"; import type { LayoutItemUtils } from "./LayoutItemUtils"; /** * Arguments for the apply settings operation. */ export interface ApplyLayoutDesignerSettingsArgs { /** * The layout node that is being configured. */ node: LayoutNode; /** * The layout settings to apply. */ settings: Partial; /** * Contextual utility functions. */ utils: LayoutItemUtils; }