import { BaseRequestOptions, BaseService, PaginatedRequestOptions } from '../infrastructure'; declare type NotificationSettingLevel = 'disabled' | 'participating' | 'watch' | 'global' | 'mention' | 'custom'; export declare class NotificationSettings extends BaseService { all({ projectId, groupId, ...options }: ({ projectId: string | number; } | { groupId: string | number; }) & PaginatedRequestOptions): Promise; edit({ projectId, groupId, ...options }: { level?: NotificationSettingLevel; } & ({ projectId: string | number; } | { groupId: string | number; }) & BaseRequestOptions): Promise; } export {};