import { Notification } from '@backstage/plugin-notifications-common'; /** * @public */ export interface NotificationTemplateRenderer { getSubject?(notification: Notification): Promise; getText?(notification: Notification): Promise; getHtml?(notification: Notification): Promise; } /** * @public */ export interface NotificationsEmailTemplateExtensionPoint { setTemplateRenderer(renderer: NotificationTemplateRenderer): void; } /** * @public */ export declare const notificationsEmailTemplateExtensionPoint: import("@backstage/backend-plugin-api").ExtensionPoint;