import { BaseResource } from '../../internal/base/index.js'; import { NotificationSettings } from '../../entities/index.js'; import { type CreateNotificationSettingsRequestBody, type ListNotificationSettingsQueryParameters, type UpdateNotificationSettingsRequestBody } from './operations/index.js'; export * from './operations/index.js'; export declare class NotificationSettingsResource extends BaseResource { list(queryParams?: ListNotificationSettingsQueryParameters): Promise; create(createNotificationSettings: CreateNotificationSettingsRequestBody): Promise; get(notificationId: string): Promise; update(notificationId: string, updateNotificationSettings: UpdateNotificationSettingsRequestBody): Promise; delete(notificationId: string): Promise; }