import { ExecutorContext } from '@nrwl/devkit';
import { NormalizedExecutorOptions } from '../schema';
export declare function compileTypeScriptFiles(normalizedOptions: NormalizedExecutorOptions, context: ExecutorContext, postCompilationCallback: () => void | Promise<void>): AsyncGenerator<{
    success: boolean;
    outfile: string;
}, any, undefined>;
