//! Fuzzy picker subsystem for hjkl-based apps.
//!
//! Provides the non-generic `Picker` harness driven by a `Box<dyn PickerLogic>`,
//! built-in file (`FileSource`) and grep (`RgSource`) sources, a fuzzy scorer,
//! and preview infrastructure. The `PickerLogic` trait allows apps to add custom
//! sources without modifying picker internals.
// Flat re-exports for ergonomic use by consumers.
pub use ;
pub use Picker;
pub use ;
pub use score;
pub use ;