/** * Configure remark with YAML frontmatter. * * Parses YAML frontmatter and takes the value of the `remark` field as * settings. * The settings are passed to `remark-stringify`. * * @returns {undefined} * Nothing. */ export default function remarkYamlConfig(): undefined; export type Root = import('mdast').Root; export type Yaml = import('mdast').Yaml; export type Processor = import('unified').Processor;