/** * Make sure there is a single top level heading in a document by adjusting * heading ranks accordingly. * * @returns * Transform. */ export default function remarkNormalizeHeadings(): (tree: Root) => undefined; export type Root = import('mdast').Root;