/** * Language-specific baseline packs — curated lessons for each ecosystem. * Combined with core lessons during `totem init` based on detected project type. * * @see #835 (language-specific baseline packs) * @see ADR-067 (ecosystem agnosticism) */ export interface BaselineLesson { heading: string; tags: string[]; body: string; } export declare const PYTHON_BASELINE: BaselineLesson[]; export declare const RUST_BASELINE: BaselineLesson[]; export declare const GO_BASELINE: BaselineLesson[]; //# sourceMappingURL=baseline-packs.d.ts.map