import { NotificationRule, ServiceOptions } from '../types'; export default class { private service; private serviceOptions; constructor(basePath: string, baseOptions: ServiceOptions); get(id: string): Promise; getAll(orgID: string): Promise; getAllForCheck(orgID: string, checkID: string): Promise; create(notificationRule: NotificationRule): Promise; update(id: string, notificationRule: Partial): Promise; delete(id: string): Promise; }