/** * Cargo.toml interrogation — extract Rust project metadata. * * The [package].description field is the Rust ecosystem's equivalent of * package.json's `description` — a one-line elevator pitch. It maps to * `project.goal` (overarching/use-case framing). */ import { type ExtractedContext } from './types.js'; /** Read Cargo.toml and extract per-slot content. Returns {} if no Cargo.toml. */ export declare function interrogateCargo(dir: string): ExtractedContext;