import type { ToastSubGroup } from "./ToastSubGroup.js"; /** * Semantically identifies that the content in the group must either be displayed as a whole, * or not displayed if it cannot fit. Groups also allow creating multiple columns. * * https://learn.microsoft.com/en-us/uwp/schemas/tiles/toastschema/element-group */ export type ToastGroup = { subgroup: Array; }; //# sourceMappingURL=ToastGroup.d.ts.map