export interface Frontmatter { readonly fields: Readonly>; readonly lists: Readonly>; readonly body: string; readonly present: boolean; } export declare function parseFrontmatter(raw: string): Frontmatter; export declare function frontmatterList(parsed: Frontmatter, key: string): string[] | undefined;