#!/usr/bin/env node
/**
 * To disable dry run mode  DRY_RUN=1 env variable must be set.
 * This function Change change the working directory.
 * */
export declare function run(params: {
    moduleDirPath: string;
    isDryRun: boolean;
}): Promise<void>;
