//! AST operations (Surgeon actions).
//!
//! This module contains high-level operations for transforming Rust code.
//!
//! ## Query Operations
//! - [`DefRefs`] - Find definitions and references of symbols
//!
//! ## Mutation Operations
//! - [`RemoveUnusedImports`] - Remove unused import statements
//! - [`Rename`] - Rename variables, functions, types
pub use ;
pub use RemoveUnusedImports;
pub use ;