1import { ExpoConfig } from '@expo/config-types';
2import { XcodeProject } from 'xcode';
3import { ConfigPlugin } from '../Plugin.types';
4export declare const withDeviceFamily: ConfigPlugin;
5export declare function getSupportsTablet(config: Pick<ExpoConfig, 'ios'>): boolean;
6export declare function getIsTabletOnly(config: Pick<ExpoConfig, 'ios'>): boolean;
7export declare function getDeviceFamilies(config: Pick<ExpoConfig, 'ios'>): number[];
8/**
9 * Wrapping the families in double quotes is the only way to set a value with a comma in it.
10 *
11 * @param deviceFamilies
12 */
13export declare function formatDeviceFamilies(deviceFamilies: number[]): string;
14/**
15 * Add to pbxproj under TARGETED_DEVICE_FAMILY
16 */
17export declare function setDeviceFamily(config: Pick<ExpoConfig, 'ios'>, { project }: {
18    project: XcodeProject;
19}): XcodeProject;
20