1import { ConfigPlugin } from 'expo/config-plugins';
2export declare const DEFAULT_NSUserTrackingUsageDescription = "Allow this app to collect app-related data that can be used for tracking you or your device.";
3export declare const withUserTrackingPermission: ConfigPlugin<{
4    userTrackingPermission?: string;
5} | void>;
6declare const _default: ConfigPlugin<void | {
7    /**
8     * Sets the iOS `NSUserTrackingUsageDescription` permission message in `Info.plist`. Omitting a
9     * description will result in using the default permission message.
10     * @default 'Allow this app to collect app-related data that can be used for tracking you or your
11     * device.'
12     */
13    userTrackingPermission?: string | undefined;
14}>;
15export default _default;
16