/** * @title notify * @description 带图带事件的桌面通知 * @param title {string} * @param options {Record} * @param events {Record} * @returns * @example ```js notify( '中奖提示', { icon: 'https://sf1-ttcdn-tos.pstatp.com/img/user-avatar/f1a9f122e925aeef5e4534ff7f706729~300x300.image', body: '恭喜你获得一等奖', tag: 'prize' }, { onclick(ev) { console.log(ev) ev.target.close() window.focus() } } ) ``` */ export declare function notify(title: string, options?: Record, events?: Record): void; //# sourceMappingURL=notify.d.ts.map