//! Overlays: floating UI that paints above the page.
//!
//! - [`Modal`] is a controlled `RenderOnce` overlay — render it (as a child of
//! a full-size root) only while `opened`, and pass an `on_close` handler.
//! - [`Tooltip`] is a small view plus the [`tooltip`] helper for gpui's
//! built-in `.tooltip(...)` attachment.
//! - [`Menu`] is a stateful entity: a trigger plus a deferred action list.
pub use ;
pub use Menu;
pub use Modal;
pub use ;
pub use Spotlight;
pub use ;