/** * Delete Notification Service * Deletes a notification by ID */ import type { ServiceOptions } from '@plyaz/types/api'; import type { EndpointsList } from '@/api/endpoints'; import type { FetchResponse } from 'fetchff'; /** * Delete a notification * * @param id - Notification ID to delete * @param options - Service options (apiClient, apiConfig) * @returns Promise resolving to deletion confirmation * * @example * ```typescript * const response = await deleteNotification( * '123', * { apiClient: myClient } * ); * console.log(response.success); * ``` */ export declare function deleteNotification(id: string, options?: ServiceOptions): Promise; //# sourceMappingURL=deleteNotification.d.ts.map