import { ElementTypes } from '../../typings'; interface options { /** * @description 消息的类型 */ type: ElementTypes; /** * @description 自定义消息的图标 */ icon: string; /** * @description 自定义图标的颜色 */ color: string; /** * @description 消息的主体 */ text: string; title: string; showMark: Boolean; top: string; cancelBtnText: string; confirmBtnText: string; draggable: Boolean; } export default function (options: Partial): Promise; export {};