import { type HTMLStyleProps, type LoopItem } from '@innet/dom'; import { type NotificationOptions } from '../Notifications/types'; export interface NotificationProps extends HTMLStyleProps { notification: LoopItem; onclose: () => void; } export declare function Notification({ notification, onclose, }: NotificationProps): any;