import { MDAST } from '../ast-types'; export declare type PropertyPath = PropertyKey | PropertyKey[]; export interface IFrontmatter { document: MDAST.Root; getAll(): Partial | void; get(prop: PropertyPath): V | void; set(prop: PropertyPath, value: unknown): void; unset(prop: PropertyPath): void; stringify(): string; isEmpty: boolean; }