import React from "react"; import type { AppBanners } from "../Types"; interface AppNotificationProps { type: "header" | "layout"; banners: AppBanners; workflow?: string; children?: React.ReactNode; } declare const AppNotification: ({ type, banners, children, workflow }: AppNotificationProps) => JSX.Element; export default AppNotification; //# sourceMappingURL=index.d.ts.map