import { type TrainingItem } from "../items.js"; import type { Corpus } from "../corpus.js"; /** Translate ONE MASSIVE row into SEMA items: its bare utterance, as an * experience. `annot_utt` (slot-annotated) is deliberately not used — its * "[date : ...]" markup is not prose. Returns [] for an unusable row. */ export declare function massiveRowToItems(row: unknown, maxChars?: number): TrainingItem[]; export declare const massive: Corpus;