/**
 * 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(force: boolean | undefined): Promise<void>;
