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>;
