interface FrontMatterResult { readonly attributes: T readonly body: string readonly frontmatter: string } interface FM { (file: string): FrontMatterResult test(file: string): boolean } declare const fm: FM export = fm