export interface SendNotificationArgs { templateId: string; emailAddress: string; personalisation: { subject: string; body: string; }; } export declare function sendNotification(args: SendNotificationArgs): Promise<{ res: import("http").IncomingMessage; error: object | Error; payload?: undefined; } | { res: import("http").IncomingMessage; payload: object; error?: undefined; }>;