import { ApiResponse, ExtraOptions } from "../../request"; import { NotificationThreshold, NotificationThresholdBody } from "../../schema/notification-threshold"; export declare type NotificationThresholdRequests = { getNotificationThresholds: ({}: { userId?: string; accountId: string; }, options?: ExtraOptions) => Promise>; addNotificationThreshold: ({}: { userId?: string; accountId: string; threshold: NotificationThresholdBody; }, options?: ExtraOptions) => Promise>; updateNotificationThreshold: ({}: { userId?: string; accountId: string; thresholdId: string; threshold: NotificationThresholdBody; }, options?: ExtraOptions) => Promise>; deleteNotificationThreshold: ({}: { userId?: string; accountId: string; thresholdId: string; }, options?: ExtraOptions) => Promise; }; //# sourceMappingURL=notification-thresholds.d.ts.map