UNPKG

@brizy/media-gallery

Version:
8 lines (7 loc) 273 B
import * as React from "react"; import { IGlobalNotification } from "~/containers/GlobalNotifications/types"; export interface Props { notifications: IGlobalNotification[]; onClose: (id: string) => void; } export declare const GlobalNotifications: React.FC<Props>;