After imorting posts from another blog double line breaks have been replaced with single line breaks

Add this to your functions.php before exporting
It will run the content through same wpautop() function that’s used to display posts.

function codelight_content_export($content) {
 return wpautop($content);
}
add_filter('the_content_export', 'codelight_content_export', 999);