UNPKG

@vectara/vectara-ui

Version:

Vectara's design system, codified as a React and Sass component library

11 lines (10 loc) 408 B
import { Notification } from "./Notification"; type Props = { notifications: Notification[]; onShowAll: () => void; onDismiss: (notification: Notification) => void; onDismissAll: () => void; onClose: () => void; }; export declare const VuiNotifications: ({ notifications, onShowAll, onDismiss, onDismissAll, onClose }: Props) => import("react/jsx-runtime").JSX.Element | null; export {};