/** * Adds application groups entitlement to an entitlements object. */ export declare function addApplicationGroupsEntitlement(entitlements: Record, groupIdentifier: string): Record; /** * Gets the entitlements for the widget extension. */ export declare function getWidgetExtensionEntitlements(groupIdentifier: string): Record; export interface GenerateEntitlementsOptions { targetPath: string; targetName: string; groupIdentifier: string; } /** * Generates the entitlements file for the widget extension. * * @param options - Generation options */ export declare function generateEntitlements(options: GenerateEntitlementsOptions): void;