import type { App } from '../../App'; import type { Group } from '../../shapes/Group'; /** Show an HTML input overlay to edit a diagram node label (draw.io-style). */ export declare function showLabelEditor(app: App, node: Group, onCommit: (text: string) => void): void;