1import { NotificationAction } from './Notifications.types';
2
3export default {
4  async getNotificationCategoriesAsync(): Promise<null> {
5    return null;
6  },
7  async setNotificationCategoryAsync(
8    identifier: string,
9    actions: NotificationAction[],
10    options?: object
11  ): Promise<null> {
12    return null;
13  },
14  async deleteNotificationCategoryAsync(identifier: string): Promise<null> {
15    return null;
16  },
17};
18