/** * notify — 通知管理命令 * v6.95.0 */ import { Command } from 'commander'; export interface NotifyOptions { all?: boolean; clear?: boolean; read?: string; } export declare function notifyCommand(options: NotifyOptions): Promise; export declare function registerNotifyCommand(program: Command): void; //# sourceMappingURL=notify.d.ts.map