import { type NOTIFYICONDATA, type SHELLEXECUTEINFO } from './structs.js'; import type { NIM_ } from './consts.js'; /** * Adds, modifies, or deletes an icon from the taskbar status area. * * https://learn.microsoft.com/en-us/windows/win32/api/shellapi/nf-shellapi-shell_notifyiconw */ export declare function Shell_NotifyIcon(message: NIM_, data: NOTIFYICONDATA): number; /** * Performs an operation on a specified file. * * https://learn.microsoft.com/en-us/windows/win32/api/shellapi/nf-shellapi-shellexecuteexw */ export declare function ShellExecuteEx(execInfo: SHELLEXECUTEINFO): boolean;