import type { ExecutorContext } from '@nrwl/devkit';
import type { Schema } from './schema';
export default function run(options: Schema, context: ExecutorContext): Promise<{
    success: boolean;
}>;
