import type { ToastActionActivationType } from "./ToastActionActivationType.js"; /** * Specifies a custom header that groups multiple notifications together within Action Center. * * https://learn.microsoft.com/en-us/uwp/schemas/tiles/toastschema/element-header */ export type ToastHeader = { "@id": string; "@title": string; "@arguments": string; "@activationType": ToastActionActivationType; }; //# sourceMappingURL=ToastHeader.d.ts.map