import { ConfigPlugin } from '@expo/config-plugins';
/**
 * Patches a Podfile string to add static library configuration for specified libraries
 * This function is exported for testing purposes
 */
export declare function patchPodfile(podfileContent: string, libraries?: string[]): string;
/**
 * Config plugin that adds pre_install hook to the iOS Podfile to set
 * specific libraries to use static build type
 */
declare const withIosStaticLibraries: ConfigPlugin<{
    libraries: string[];
}>;
export default withIosStaticLibraries;
