import { IExecutor } from './IExecutor'; import { ICompiler } from '../Compiler'; /** * @category composable/executors */ export declare abstract class Executor implements IExecutor { protected customBinaryPath: string; get binaryPath(): string; set binaryPath(value: string); abstract compiler: ICompiler; abstract execute(): O; }