/**
 * Create a directory if it does not exist, or empty it if it does
 * @param dirPath directory path
 * @param force whether to force emptying the directory
 */
export default function createWorkingDir(projectName?: string, force?: boolean): Promise<void>;
