interface NotifyChannel { type: 'slack' | 'discord' | 'telegram' | 'email'; webhook?: string; chatId?: string; botToken?: string; } export declare function notifySetup(): Promise; export declare function notifyTest(): Promise; export declare function sendNotification(channel: NotifyChannel, title: string, message: string): Promise; export {};