import type { StackDetection } from "./init-detect.js"; import type { ComponentInventoryEntry } from "../types.js"; export interface LyseMdInputs { repoRoot: string; stack: StackDetection; componentsModule: string | null; componentInventory: ComponentInventoryEntry[]; } export declare function writeLyseMd(inputs: LyseMdInputs): { path: string; created: boolean; updated: boolean; };