/** * Lightweight `.comet.yaml` parser. * * Mirrors the format produced by `assets/skills/comet/scripts/comet-state.sh` * (a single flat map of `key: value` lines). This is intentionally a subset * of YAML — no nested keys, no anchors — and matches the parser already used * by `app/commands/status.ts`. It is reproduced here, rather than reused, to * keep the dashboard module standalone; a future PR may consolidate them. */ export type CometYaml = Record; export declare function readCometYaml(yamlPath: string): Promise; export declare function parseCometYaml(raw: string): CometYaml; //# sourceMappingURL=yaml.d.ts.map