import { ElementTypes } from '../../typings'; interface options { /** * @description 消息的类型 */ type: ElementTypes; /** * @description 自定义消息的图标 */ icon: string; /** * @description 自定义图标的颜色 */ color: string; /** * @description 消息的主体 */ text: string; /** * @description 消息的存活时间 */ timeout: number; /** * @description 距离上一个消息的间距 */ offset: number; showCloseIcon: Boolean; } export default function (options: Partial): Promise; export {};