/** * Extract front matter from a page * @param {string} content The content of a page * @param {string} filepath The absolute path to the path * @returns {{frontmatter: {[k:string]: any}, body: string}} The extracted front matter and body */ declare const _default: (content: string, filepath: string) => { frontmatter: { [k: string]: any; }; body: string; }; export default _default;