import ExecutionConfig from '../ExecutionConfig';
import { ITemplate } from '../interfaces';
export interface IEnvOpParams {
template: ITemplate;
path: string;
}
export default function attachEnvironmentAfterExecute(ec: ExecutionConfig, func: (params: IEnvOpParams) => void): void;