import React from "react"; import type { AppBanners } from "../Types"; interface LayoutWithNotificationsProps { bannersData: AppBanners; onDismissAlert: (updatedData: AppBanners) => void; children: React.ReactNode; workflow?: string; } declare const LayoutWithNotifications: ({ bannersData, onDismissAlert, children, workflow, }: LayoutWithNotificationsProps) => JSX.Element; export default LayoutWithNotifications; //# sourceMappingURL=LayoutWithNotifications.d.ts.map