export type TExpoNotifeeRemote = { /** * @summary Apple App Groups * @description Array of Apple App Groups. Merges with config from app.json:
* `ios.entitlements['com.apple.security.application-groups']` * * Creates one of none provided. * @example appGroups: ['group.app.bluesky'] * @link https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_application-groups */ appGroups?: string[]; keychainAccessGroups?: string[]; /** * @description * Use a custom relative (from project root) path for the NotifeeNotificationService. * - You can adapt `expo-notifee-plugin/ios/NotifeeNotificationService.swift` * - Warning! It should be named `NotifeeNotificationService`! Doesn't matter if you use * Swift or Objective-C! * * @examples * - src/notifications/NotifeeNotificationService.swift * - src/notifications/NotifeeNotificationService.m */ customNotificationServicePath?: string; developmentTeam: string; /** * An array containing the sound file names (including file extensions) * @example soundFiles: ['dm.aiff'] * */ soundFiles?: string[]; /** Path of the folder that contains the sound. Relative to the app.config.js file. * @example soundFilesPath: 'assets/audio' */ soundFilesPath?: string; }; //# sourceMappingURL=types.d.ts.map