export interface MarkdownMetadata { frontmatter: Record; tags: string[]; links: string[]; embeds: string[]; } export declare function extractFrontmatter(raw: string): Record; export declare function extractTags(raw: string): string[]; export declare function extractLinks(raw: string): string[]; export declare function extractEmbeds(raw: string): string[]; export declare function parseMarkdownMetadata(raw: string): MarkdownMetadata;