//! Memory Interchange Format (MIF) v2
//!
//! Vendor-neutral schema for exporting, importing, and converting memory data
//! across different AI memory systems (shodh-memory, mem0, generic JSON, markdown).
//!
//! Architecture:
//! - `schema` — MIF v2 types (vendor-neutral core + vendor extensions)
//! - `export` — streaming export from shodh internals → MifDocument
//! - `import` — reference-preserving import from MifDocument → shodh internals
//! - `pii` — PII detection and redaction
//! - `adapters` — format converters (shodh JSON, mem0, generic, markdown)
pub use MifDocument;