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 in string]: unknown; }); //# sourceMappingURL=ThirdPartyWidgetSettings.d.ts.map