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