import type { TsUnknown } from "./TsUnknown.js"; export type ThirdPartyWidgetSettings = { /** * Enable or disable the widget */ enabled: boolean; /** * By intance will be used to store settings in case of multiple instances allowed on widget.\ * The map values will be merged with the root object and default values on settings declaration. */ $instances?: { [key in string]: { [key in string]: TsUnknown; }; } | null; /** * Key overrides for widget-declared shortcuts (`shortcut_id -> keys`). * When present, replaces the shortcut's `defaultKeys` for this widget instance. */ $shortcuts?: { [key in string]: Array; } | null; } & ({ [key in string]: unknown; }); //# sourceMappingURL=ThirdPartyWidgetSettings.d.ts.map