import { NotificationAction } from './Notifications.types'; export default { async getNotificationCategoriesAsync(): Promise { return null; }, async setNotificationCategoryAsync( identifier: string, actions: NotificationAction[], options?: object ): Promise { return null; }, async deleteNotificationCategoryAsync(identifier: string): Promise { return null; }, };