export interface NoteFrontmatter { readonly title: string; readonly updated: string; readonly tags?: readonly string[]; } export interface ParsedNote { readonly frontmatter: NoteFrontmatter; readonly body: string; } export declare function parseNoteMarkdown(markdown: string): ParsedNote; export declare function renderNoteMarkdown(frontmatter: NoteFrontmatter, body: string): string; export declare function createEmptyNoteMarkdown(title: string, updatedIso: string): string; export declare function withUpdatedTimestamp(markdown: string, updatedIso: string): string; //# sourceMappingURL=format.d.ts.map