import { BaseApi } from './BaseApi'; export interface UIElementApi extends BaseApi { /** * @deprecated use {@link triggerValueChange} instead * */ onValueChanged(value: any): void; /** * Callback function intended to be called by the UIElement implementation when its value changes. * This typically signals the change to the managing control. * @param value - The new value of the UI element. */ triggerValueChange(value: unknown): void; }