//! Search types for the `NotedThat` search API.
//!
//! This module provides the typed request/response surface for
//! `POST /api/v1/knowledgebases/{kb_slug}/search`.
//!
//! See SPECIFICATIONS.md §6.10 (SearchRequest/SearchFilter fields),
//! §6.13 (route contract), D41 (top-k only, limit clamping),
//! D43 (error mapping), D44 (preview truncation).
pub use ObjectKey;
pub use SearchFilter;
pub use SearchError;
pub use SearchHit;
pub use ConceptMetadata;
pub use SearchResponse;
pub use ;
// TODO(m5): populated by T3-T8