import type { PieceFrontmatter } from './frontmatter.js'; type PieceMarkdown = { filePath: string; piece: string; note?: string; frontmatter: F; }; declare function makePieceMarkdown(filePath: string, piece: string, note: string | undefined, frontmatter: F): PieceMarkdown; declare function makePieceMarkdownString(markdown: PieceMarkdown): string; export { type PieceMarkdown, makePieceMarkdown, makePieceMarkdownString };