import { TotalumApiResponse, NotificationI } from "../common/interfaces"; import { NotificationResponse } from "../common/response-types"; import { FetchClient } from "../common/fetch-client"; export declare class NotificationService { private client; constructor(client: FetchClient); /** * Creates a notification. * @param {NotificationI} notification - The notification configuration * @returns {Promise>} - A promise that resolves to the created notification. */ createNotification(notification: NotificationI): Promise>; }