/** * Shared Markdown Artifact Saver * * Provides a common function for saving markdown artifacts (outlines, schemas, * console logs) to the file system with consistent frontmatter and directory handling. */ /** * Save a markdown artifact to the screenshots directory with frontmatter. * * Handles: mkdir, slug generation, frontmatter construction, file write, and logging. * Returns the absolute path of the saved file. */ export declare function saveMarkdownArtifact(opts: { type: string; markdown: string; url: string; title: string; timestamp: number; }): Promise; //# sourceMappingURL=saveMarkdown.d.ts.map