import { GeneratorCallback } from '@nx/devkit';
/**
 * Run pod install on ios directory
 * @param iosDirectory ios directory that contains Podfile
 * @returns resolve with 0 if not error, reject with error otherwise
 */
export declare function runPodInstall(iosDirectory: string, install?: boolean, options?: {
    buildFolder?: string;
    repoUpdate?: boolean;
    deployment?: boolean;
}): GeneratorCallback;
export declare function podInstall(iosDirectory: string, options?: {
    buildFolder?: string;
    repoUpdate?: boolean;
    deployment?: boolean;
}): void;
