import { SuccessResponseDto } from '../../success-response.dto'; /** * Response from notification integrations after successfully sending a notification. * Returned to hoster.ai confirming the notification was sent. */ export declare class NotificationSendResponseDto extends SuccessResponseDto { /** Unique identifier for the sent notification */ notificationId: string; }