import type { ResourceText } from "./ResourceText.js"; export type WidgetSettingInputNumber = { /** * Default numeric value */ defaultValue: number; /** * Minimum allowed value */ min: number | null; /** * Maximum allowed value */ max: number | null; /** * Step increment for input controls */ step: number | null; /** * Unique key for this setting, used to identify it in the configuration.\ * Must be unique within the widget. Duplicates will be ignored. */ key: string; /** * Label to display to the user */ label: ResourceText; /** * Optional detailed description shown under the label */ description: ResourceText | null; /** * Optional tooltip icon with extra information */ tip: ResourceText | null; /** * Whether this setting can be configured per monitor in monitor-specific settings */ allowSetByMonitor: boolean; /** * Keys of settings that must be enabled for this item to be active.\ * Uses JavaScript truthy logic (!!value) to determine if dependency is met. */ dependencies: Array; }; //# sourceMappingURL=WidgetSettingInputNumber.d.ts.map