export type FrontmatterValue = string | string[]; export type Frontmatter = Record; export declare function timestamp(): string; export declare function readFileSafe(filePath: string): Promise; export declare function ensureDir(dirPath: string): Promise; export declare function isNodeError(err: unknown): err is NodeJS.ErrnoException; export declare function stripFrontmatter(content: string): string; export declare function parseFrontmatter(content: string): Frontmatter; export declare function frontmatterString(fm: Frontmatter, key: string): string | undefined; export declare function frontmatterArray(fm: Frontmatter, key: string): string[] | undefined; //# sourceMappingURL=utils.d.ts.map