import { type ExperimentFrontmatter } from "../../experiment-loop/dist/index.js"; import { type RalphFrontmatter } from "../../ralph/dist/index.js"; import type { DiscoveryFs, PlanEntry, SavedForLaterMetadata } from "./types.js"; export declare function formatPipelineProgress(content: string): string; export declare function formatRalphDetail(frontmatter: RalphFrontmatter): string; export declare function formatExperimentDetail(frontmatter: ExperimentFrontmatter, state: string): string; export declare function splitFrontmatter(content: string, filePath: string): { body: string; data: Record | undefined; }; export declare function readSavedForLaterMetadata(content: string, filePath: string): SavedForLaterMetadata | undefined; export declare function writeSavedForLaterReason(content: string, filePath: string, reason: string): string; export declare function formatSuperintendentDetail(frontmatter: Record): string; export declare function getLastExperimentState(journalContent: string): string; export declare function deriveMarkdownTitle(content: string, fallbackName: string): string; export declare function formatPipelinePlanMarkdown(options: { title: string; content: string; }): string; export declare function readExperimentState(fs: Pick, absolutePath: string): Promise; export declare function loadPlanPreviewMarkdown(entry: Pick, fs: Pick): Promise; export declare function readPlanMetadata(options: { kind: PlanEntry["kind"]; absolutePath: string; path: string; fs: Pick; content?: string; }): Promise>;