export interface FrontMatterResult { readonly attributes: T readonly body: string readonly bodyBegin: number; readonly frontmatter?: string } interface FM { (file: string): FrontMatterResult test(file: string): boolean } declare const fm: FM export default fm