import { ExecutorContext } from '@nx/devkit'; import { NormalizedSwcExecutorOptions } from '../schema'; export declare function compileSwc(context: ExecutorContext, normalizedOptions: NormalizedSwcExecutorOptions, postCompilationCallback: () => Promise): Promise<{ success: boolean; outfile?: undefined; } | { success: boolean; outfile: string; }>; export declare function compileSwcWatch(context: ExecutorContext, normalizedOptions: NormalizedSwcExecutorOptions, postCompilationCallback: () => Promise): AsyncGenerator<{ success: boolean; outfile: string; }, any, any>; //# sourceMappingURL=compile-swc.d.ts.map