import { ExecutorContext } from '@nx/devkit'; import type { WebpackExecutorOptions } from './schema'; export type WebpackExecutorEvent = { success: false; outfile?: string; options?: WebpackExecutorOptions; } | { success: true; outfile: string; options?: WebpackExecutorOptions; }; export declare function webpackExecutor(_options: WebpackExecutorOptions, context: ExecutorContext): AsyncGenerator; export default webpackExecutor; //# sourceMappingURL=webpack.impl.d.ts.map