import { Recipe } from "../../recipe"; import { TreeVisitor } from "../../visitor"; import { ExecutionContext } from "../../execution"; export declare class OrderImports extends Recipe { readonly name = "org.openrewrite.javascript.cleanup.order-imports"; readonly displayName = "Order imports"; readonly description = "Sort imports by category and module path. Categories: side-effect, namespace, default, named, type. Within each category, imports are sorted alphabetically by module path. Named specifiers within each import are also sorted alphabetically."; editor(): Promise>; } //# sourceMappingURL=order-imports.d.ts.map