import { ConfigPlugin } from "expo/config-plugins"; type PluginOptions = { /** Bundle ID for the NSE target. Default: "{appBundleId}.NotificationServiceExtension" */ extensionBundleId?: string; /** App Group identifier. Default: "group.{appBundleId}" */ appGroupId?: string; /** Path to a default avatar image to bundle in the extension. */ defaultAvatarImage?: string; /** Max cache size in MB. Default: 50 */ cacheSizeLimitMB?: number; /** Path to a developer Swift hook file to copy into the extension target. */ extensionHookFile?: string; /** Enable NSLog logging in the extension. Default: false */ enableLogging?: boolean; /** Code signing settings for the extension. */ signing?: { /** "automatic" or "manual". Default: "automatic" */ style?: "automatic" | "manual"; /** Development team ID. Inherited from main app if not set. */ developmentTeam?: string; /** Provisioning profile specifier for manual signing. */ provisioningProfile?: string; /** Code sign identity for manual signing. */ codeSignIdentity?: string; }; }; declare const withNotificationServiceExtension: ConfigPlugin; export default withNotificationServiceExtension;