import type { ResourceText } from "./ResourceText.js"; export type WidgetSettingRange = { /** * Default value for the range slider */ defaultValue: number; /** * Minimum value of the range */ min: number | null; /** * Maximum value of the range */ max: number | null; /** * Step increment for the slider */ 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=WidgetSettingRange.d.ts.map