import { ExecutorContext } from '@nx/devkit';
import { ReactNativePodInstallOptions } from './schema';
export interface ReactNativePodInstallOutput {
    success: boolean;
}
export default function podInstall(options: ReactNativePodInstallOptions, context: ExecutorContext): AsyncGenerator<ReactNativePodInstallOutput>;
