/** * @description 打开电脑本地软件 * @param protocol 本地软件协议, 如 vscode 的协议 `vscode://` * @param event 点击按钮事件, `el-button` 或者原生 `button` * @param timeout 默认`1000`ms,没响应则认为打开失败 */ declare const openExe: (protocol: string, event: Event, timeout?: number) => Promise; export { openExe };