import { ElementTypes } from '../../typings'; type positions = 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left'; interface options { /** * @description 通知的类型 */ type: ElementTypes; /** * @description 自定义通知的图标 */ icon: string; /** * @description 自定义图标的颜色 */ color: string; /** * @description 通知的标题 */ title: string; /** * @description 通知的主体 */ text: string; /** * @description 通知的存活时间 */ timeout: number; /** * @description 距离上一个通知的间距 */ offset: number; /** * @description 通知的方位 */ placement: positions; } export default function (options: Partial): Promise; export {};