import type { PinnedWegItemData } from "./PinnedWegItemData.js"; export type WegItem = { "type": "Pinned"; } & PinnedWegItemData | { "type": "Temporal"; } & PinnedWegItemData | { "type": "Separator"; id: string; } | { "type": "Media"; id: string; } | { "type": "StartMenu"; id: string; } | { "type": "ShowDesktop"; id: string; }; //# sourceMappingURL=WegItem.d.ts.map