~~ statements.sortImportDeclarations: maintain ~~
== should keep the imports declaration sort order as-is ==
import {} from "b.ts";
import {} from "a.ts";

[expect]
import {} from "b.ts";
import {} from "a.ts";
