import type { JSXElement } from '../basic-config'; import { type NotificationType } from './queque'; declare const notification: (type: keyof typeof NotificationType, children: JSXElement, duration?: number, close?: boolean, icon?: JSXElement) => string; export default notification;