import { ConfigPlugin } from '@expo/config-plugins';
import { WhipWhepPluginOptions } from './types';
/**
 * Generates the Podfile snippet that adds the broadcast extension target.
 * This snippet adds the necessary WebRTC dependency to the extension.
 */
export declare function getSbePodfileSnippet(props: WhipWhepPluginOptions): string;
/**
 * Main iOS plugin function.
 * Applies all iOS-specific configurations conditionally based on options.
 *
 * This orchestrates:
 * - Screen sharing setup (if enabled)
 * - Deployment target configuration
 * - Picture-in-Picture support
 */
declare const withWhipWhepIos: ConfigPlugin<WhipWhepPluginOptions>;
export default withWhipWhepIos;
